get_post_type_archive_feed_link

函数
get_post_type_archive_feed_link ( $post_type, $feed = '' )
参数
  • (string) $post_type Post type.
    Required:
  • (string) $feed Optional. Feed type. Possible values include 'rss2', 'atom'. Default is the value of get_default_feed().
    Required:
    Default: (empty)
返回值
  • (string|false) The post type feed permalink. False if the post type does not exist or does not have an archive.
定义位置
相关方法
get_post_type_archive_linkget_post_type_archive_templateget_search_feed_linkget_post_comments_feed_linkis_post_type_archive
引入
3.1.0
弃用
-

get_post_type_archive_feed_link: 这个函数检索给定的文章类型的存档feed的固定链接。它接受一个文章类型的名称作为其参数,并返回文章类型存档的固定链接。

检索一个文章类型档案资料的固定链接。

function get_post_type_archive_feed_link( $post_type, $feed = '' ) {
	$default_feed = get_default_feed();
	if ( empty( $feed ) ) {
		$feed = $default_feed;
	}

	$link = get_post_type_archive_link( $post_type );
	if ( ! $link ) {
		return false;
	}

	$post_type_obj = get_post_type_object( $post_type );
	if ( get_option( 'permalink_structure' ) && is_array( $post_type_obj->rewrite ) && $post_type_obj->rewrite['feeds'] ) {
		$link  = trailingslashit( $link );
		$link .= 'feed/';
		if ( $feed != $default_feed ) {
			$link .= "$feed/";
		}
	} else {
		$link = add_query_arg( 'feed', $feed, $link );
	}

	/**
	 * Filters the post type archive feed link.
	 *
	 * @since 3.1.0
	 *
	 * @param string $link The post type archive feed link.
	 * @param string $feed Feed type. Possible values include 'rss2', 'atom'.
	 */
	return apply_filters( 'post_type_archive_feed_link', $link, $feed );
}

常见问题

FAQs
查看更多 >