Retrieves the permalink for a tag feed.
Parameters
$tagint|WP_Term|objectrequired- The ID or term object whose feed link will be retrieved.
$feedstringoptional- Feed type. Possible values include
'rss2','atom'.
Default is the value of get_default_feed() .Default:
''
Source
function get_tag_feed_link( $tag, $feed = '' ) {
return get_term_feed_link( $tag, 'post_tag', $feed );
}
Changelog
| Version | Description |
|---|---|
| 2.3.0 | Introduced. |
User Contributed Notes
You must log in before being able to contribute a note or feedback.