permalink_single_rss

函数
permalink_single_rss ( $deprecated = '' )
参数
  • (string) $deprecated
    Required:
    Default: (empty)
相关
  • the_permalink_rss()
定义位置
相关方法
permalink_linkthe_permalink_rsspermalink_anchorwp_get_single_postwp_title_rss
引入
0.71
弃用
2.3.0

permalink_single_rss: 该函数用于在单个RSS项目中输出当前文章的固定链接。它需要两个参数。$id和$feed。$id参数是可选的,允许你指定当前文章以外的一个文章ID。$feed参数也是可选的,允许你指定feed的格式。

打印RSS feed的固定链接。

function permalink_single_rss($deprecated = '') {
	_deprecated_function( __FUNCTION__, '2.3.0', 'the_permalink_rss()' );
	the_permalink_rss();
}

常见问题

FAQs
查看更多 >