wpseek.com
Outil de recherche WordPress pour les développeurs et auteurs de thèmes



get_category_feed_link › WordPress Function

Depuis2.5.0
Dépréciéen/a
get_category_feed_link ( $cat, $feed = '' )
Paramètres: (2)
  • (int|WP_Term|object) $cat The ID or category object whose feed link will be retrieved.
    Requis: Oui
  • (string) $feed Optional. Feed type. Possible values include 'rss2', 'atom'. Default is the value of get_default_feed().
    Requis: Non
    Défaut: (vide)
Retourne:
  • (string) Link to the feed for the category specified by `$cat`.
Défini(e) dans:
Codex:

Retrieves the feed link for a category.

Returns a link to the feed for all posts in a given category. A specific feed can be requested or left blank to get the default feed.


Source

function get_category_feed_link( $cat, $feed = '' ) {
	return get_term_feed_link( $cat, 'category', $feed );
}