Definition:
function get_the_tag_list( $before = '', $sep = '', $after = '' ) {}
Retrieve the tags for a post formatted as a string.
Parameters
- string $before: Optional. Before tags.
- string $sep: Optional. Between tags.
- string $after: Optional. After tags.
Defined filters
- the_tags
apply_filters( 'the_tags', get_the_term_list( 0, 'post_tag', $before, $sep, $after )
Source code
function get_the_tag_list( $before = '', $sep = '', $after = '' ) { return apply_filters( 'the_tags', get_the_term_list( 0, 'post_tag', $before, $sep, $after ), $before, $sep, $after); }
1849
No comments yet... Be the first to leave a reply!