Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: tag_link

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
800      $slug = $tag->slug;
801
802      if ( empty( $taglink ) ) {
803           $file = get_option( 'home' ) . '/';
804           $taglink = $file . '?tag=' . $slug;
805      } else {
806           $taglink = str_replace( '%tag%', $slug, $taglink );
807           $taglink = get_option( 'home' ) . user_trailingslashit( $taglink, 'category' );
808      }
809      return apply_filters( 'tag_link', $taglink, $tag_id );
810 }
811
812 /**
813  * Retrieve the tags for a post.
814  *
815  * @since 2.3.0
816  * @uses apply_filters() Calls 'get_the_tags' filter on the list of post tags.
817  *
818  * @param int $id Post ID.