Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: single_tag_title

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
767 function single_term_title( $prefix = '', $display = true ) {
768      $term = get_queried_object();
769
770      if ( !$term )
771           return;
772
773      if ( is_category() )
774           $term_name = apply_filters( 'single_cat_title', $term->name );
775      elseif ( is_tag() )
776           $term_name = apply_filters( 'single_tag_title', $term->name );
777      elseif ( is_tax() )
778           $term_name = apply_filters( 'single_term_title', $term->name );
779      else
780           return;
781
782      if ( empty( $term_name ) )
783           return;
784
785      if ( $display )