What is the difference with get_sidebar()
and dynamic_sidebar()
?
I was wondering which one I should use. Maybe one use widgets and the other one doesn’t?
What is the difference with get_sidebar()
and dynamic_sidebar()
?
I was wondering which one I should use. Maybe one use widgets and the other one doesn’t?
You must be logged in to post a comment.
Please refer to the
get_sidebar()
anddynamic_sidebar()
Codex entries.The
get_sidebar( $slug )
template tag includes thesidebar-$slug.php
template-part file.The
dynamic_sidebar( $slug )
template tag outputs the$slug
dynamic sidebar, as defined byregister_sidebar( array( 'id' => $slug ) )
.