返回介绍

get_post_comments_feed_link()

发布于 2017-09-10 23:50:03 字数 3726 浏览 1051 评论 0 收藏 0

get_post_comments_feed_link( int $post_id,  string $feed = '' )

Retrieves the permalink for the post comments feed.


description


参数

$post_id

(int) (Optional) Post ID. Default is the ID of the global $post.

$feed

(string) (Optional) Feed type.

Default value: ''


返回值

(string) The permalink for the comments feed for the given post.


源代码

File: wp-includes/link-template.php

function get_post_comments_feed_link( $post_id = 0, $feed = '' ) {
	$post_id = absint( $post_id );

	if ( ! $post_id )
		$post_id = get_the_ID();

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

	$post = get_post( $post_id );
	$unattached = 'attachment' === $post->post_type && 0 === (int) $post->post_parent;

	if ( '' != get_option('permalink_structure') ) {
		if ( 'page' == get_option('show_on_front') && $post_id == get_option('page_on_front') )
			$url = _get_page_link( $post_id );
		else
			$url = get_permalink($post_id);

		if ( $unattached ) {
			$url =  home_url( '/feed/' );
			if ( $feed !== get_default_feed() ) {
				$url .= "$feed/";
			}
			$url = add_query_arg( 'attachment_id', $post_id, $url );
		} else {
			$url = trailingslashit($url) . 'feed';
			if ( $feed != get_default_feed() )
				$url .= "/$feed";
			$url = user_trailingslashit($url, 'single_feed');
		}
	} else {
		if ( $unattached ) {
			$url = add_query_arg( array( 'feed' => $feed, 'attachment_id' => $post_id ), home_url( '/' ) );
		} elseif ( 'page' == $post->post_type ) {
			$url = add_query_arg( array( 'feed' => $feed, 'page_id' => $post_id ), home_url( '/' ) );
		} else {
			$url = add_query_arg( array( 'feed' => $feed, 'p' => $post_id ), home_url( '/' ) );
		}
	}

	/**
	 * Filters the post comments feed permalink.
	 *
	 * @since 1.5.1
	 *
	 * @param string $url Post comments feed permalink.
	 */
	return apply_filters( 'post_comments_feed_link', $url );
}

更新日志

Versiondescription
2.2.0Introduced.

相关函数

Uses

  • wp-includes/formatting.php: trailingslashit()
  • wp-includes/functions.php: absint()
  • wp-includes/functions.php: add_query_arg()
  • wp-includes/link-template.php: home_url()
  • wp-includes/link-template.php: post_comments_feed_link
  • wp-includes/link-template.php: _get_page_link()
  • wp-includes/link-template.php: get_permalink()
  • wp-includes/link-template.php: user_trailingslashit()
  • wp-includes/plugin.php: apply_filters()
  • wp-includes/feed.php: get_default_feed()
  • wp-includes/option.php: get_option()
  • wp-includes/post-template.php: get_the_ID()
  • wp-includes/post.php: get_post()
  • Show 8 more uses Hide more uses

Used By

  • wp-includes/general-template.php: feed_links_extra()
  • wp-includes/deprecated.php: comments_rss()
  • wp-includes/link-template.php: post_comments_feed_link()
  • wp-includes/canonical.php: redirect_canonical()
  • wp-includes/canonical.php: redirect_guess_404_permalink()

User Contributed Notes

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文