get_category_feed_link()

get_category_feed_link( int $cat_id, string $feed = ” )…

get_category_feed_link( int $cat_id, string $feed =  )

检索类别的源链接。
Retrieves the feed link for a category.

目录锚点:#说明#参数#返回#源码#笔记


说明(Description)

返回指向给定类别中所有文章的源的链接。可以请求特定提要,也可以将其留空以获取默认提要。


参数(Parameters)

参数 类型 必填 说明
$cat_id (int) 必需 类别ID。
$feed (string) 可选 进给类型。可能的值包括“rss2”、“atom”。Default是get_Default_feed()的值。

返回(Return)

(string)链接到$cat_id指定类别的提要。


源码(Source)

/**
 * Retrieve 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.
 *
 * @since 2.5.0
 *
 * @param int    $cat_id ID of a category.
 * @param string $feed   Optional. Feed type.
 * @return string Link to the feed for the category specified by $cat_id.
*/
function get_category_feed_link( $cat_id, $feed = '' ) {
	return get_term_feed_link( $cat_id, 'category', $feed );
}
更新版本 源码位置 使用 被使用
2.5.0 wp-includes/link-template.php:836 3 1 function

笔记(Notes)

基本示例
RSS的自动显示

类别:WordPress 函数手册

本文收集自互联网,转载请注明来源。
如有侵权,请联系 wper_net@163.com 删除。

评论 (0)COMMENT

登录 账号发表你的看法,还没有账号?立即免费 注册