Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: get_sidebar

To save our bandwidth, we show only a snippet of code around each occurence of the hook. View complete file in SVN (without highlighting).

Understanding Source Code

The best way to understand what a hook does is to look at where it occurs in the source code.

Remember, this hook may occur in more than one file. Moreover, the hook's context may change from version to version.

Source View

Line Code
76  * "special".
77  *
78  * @uses locate_template()
79  * @since 1.5.0
80  * @uses do_action() Calls 'get_sidebar' action.
81  *
82  * @param string $name The name of the specialised sidebar.
83  */
84 function get_sidebar( $name = null ) {
85      do_action( 'get_sidebar', $name );
86
87      $templates = array();
88      $name = (string) $name;
89      if ( '' !== $name )
90           $templates[] = "sidebar-{$name}.php";
91
92      $templates[] = 'sidebar.php';
93
94      // Backward compat code will be removed in a future release