Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: the_tags

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
473      }
474      return apply_filters('tag_link', $taglink, $tag_id);
475 }
476
477 function get_the_tags( $id = 0 ) {
478      return apply_filters( 'get_the_tags', get_the_terms($id, 'post_tag') );
479 }
480
481 function get_the_tag_list( $before = '', $sep = '', $after = '' ) {
482      return apply_filters( 'the_tags', get_the_term_list(0, 'post_tag', $before, $sep, $after) );
483 }
484
485 function the_tags( $before = 'Tags: ', $sep = ', ', $after = '' ) {
486      return the_terms( 0, 'post_tag', $before, $sep, $after );
487 }
488
489 function get_the_terms( $id = 0, $taxonomy ) {
490      global $post;
491