get_tag_feed_link( int|WP_Term|object $tag, string $feed = '' ): string

Retrieves the permalink for a tag feed.


Parameters

$tag int|WP_Term|object Required
The ID or term object whose feed link will be retrieved.
$feed string Optional
Feed type. Possible values include 'rss2', 'atom'.
Default is the value of get_default_feed() .

Default: ''


Top ↑

Return

string The feed permalink for the given tag.


Top ↑

Source

File: wp-includes/link-template.php. View all references

function get_tag_feed_link( $tag, $feed = '' ) {
	return get_term_feed_link( $tag, 'post_tag', $feed );
}


Top ↑

Changelog

Changelog
Version Description
2.3.0 Introduced.

Top ↑

User Contributed Notes

You must log in before being able to contribute a note or feedback.