WordPress获取作者Feed链接函数:get_author_feed_link

2022/07/10

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>

发表回复

您的电子邮箱地址不会被公开。 必填项已用 * 标注