WordPress获取作者Feed链接函数:get_author_feed_link
WordPress函数get_author_feed_link返回指定作者的Feed链接。
get_author_feed_link( int $author_id, string $feed = '' )
函数参数
$author_id
整数
作者的ID
$feed
字符串
Feed的类型,可用值:rss2、atom,默认值为get_default_feed()函数返回的值,即rss2
函数使用示例
<a href="<?php echo get_author_feed_link(1); ?>">订阅<?php echo get_the_author_meta('display_name', 1); ?></a>