get_author_feed_link

函数
get_author_feed_link ( $author_id, $feed = '' )
参数
  • (int) $author_id Author ID.
    Required:
  • (string) $feed Optional. Feed type. Possible values include 'rss2', 'atom'. Default is the value of get_default_feed().
    Required:
    Default: (empty)
返回值
  • (string) Link to the feed for the author specified by $author_id.
定义位置
相关方法
get_author_linkget_category_feed_linkget_term_feed_linkget_author_rss_linkget_tag_feed_link
引入
2.5.0
弃用
-

get_author_feed_link: 这个函数返回给定作者的RSS提要的URL。

为一个给定的作者检索feed链接。

返回一个给定作者的所有文章的链接。可以请求一个特定的feed,或者留空以获得默认的feed。

function get_author_feed_link( $author_id, $feed = '' ) {
	$author_id           = (int) $author_id;
	$permalink_structure = get_option( 'permalink_structure' );

	if ( empty( $feed ) ) {
		$feed = get_default_feed();
	}

	if ( ! $permalink_structure ) {
		$link = home_url( "?feed=$feed&author=" . $author_id );
	} else {
		$link = get_author_posts_url( $author_id );
		if ( get_default_feed() == $feed ) {
			$feed_link = 'feed';
		} else {
			$feed_link = "feed/$feed";
		}

		$link = trailingslashit( $link ) . user_trailingslashit( $feed_link, 'feed' );
	}

	/**
	 * Filters the feed link for a given author.
	 *
	 * @since 1.5.1
	 *
	 * @param string $link The author feed link.
	 * @param string $feed Feed type. Possible values include 'rss2', 'atom'.
	 */
	$link = apply_filters( 'author_feed_link', $link, $feed );

	return $link;
}

常见问题

FAQs
查看更多 >