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
1190       *
1191       * @since 2.3.0
1192       *
1193       * @param string $tag_list List of tags.
1194       * @param string $before   String to use before the tags.
1195       * @param string $sep      String to use between the tags.
1196       * @param string $after    String to use after the tags.
1197       * @param int    $post_id  Post ID.
1198       */
1199      return apply_filters( 'the_tags', $tag_list, $before, $sep, $after, $post_id );
1200 }
1201
1202 /**
1203  * Displays the tags for a post.
1204  *
1205  * @since 2.3.0
1206  *
1207  * @param string $before Optional. String to use before the tags. Defaults to 'Tags:'.
1208  * @param string $sep    Optional. String to use between the tags. Default ', '.