时间:2024-03-12
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>
get_author_feed_link()函数位于:wp-includes/link-template.php
相关函数:
author_feed_link()
get_author_rss_link()
Copyright © 2019-2024 javascript.hk