Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: comments_popup_template

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
388           return get_query_template('attachment');
389 }
390
391 function get_comments_popup_template() {
392      if ( file_exists( TEMPLATEPATH . '/comments-popup.php') )
393           $template = TEMPLATEPATH . '/comments-popup.php';
394      else
395           $template = get_theme_root() . '/default/comments-popup.php';
396
397      return apply_filters('comments_popup_template', $template);
398 }
399
400 function load_template($_template_file) {
401      global $posts, $post, $wp_did_header, $wp_did_template_redirect, $wp_query,
402           $wp_rewrite, $wpdb, $wp_version, $wp, $id, $comment;
403
404      if ( is_array($wp_query->query_vars) )
405           extract($wp_query->query_vars, EXTR_SKIP);
406