post_comments_feed_link()

post_comments_feed_link( string $link_text = ”, int $po…

post_comments_feed_link( string $link_text = , int $post_id = , string $feed =  )

显示帖子的评论源链接。
Displays the comment feed link for a post.

目录锚点:#说明#参数#返回#源码


说明(Description)

打印出帖子的评论源链接。链接文本放置在锚定中。如果未指定链接文本,则使用默认文本。如果未指定post ID,则使用当前post。


参数(Parameters)

参数 类型 必填 说明
$link_text (string) 可选 描述性链接文本。默认“评论源”。
$post_id (int) 可选 Post ID。默认值是全局$Post的ID。
$feed (string) 可选 进给类型。可能的值包括“rss2”、“atom”。Default是get_Default_feed()的值。

返回(Return)

无返回值


源码(Source)

/**
 * Display the comment feed link for a post.
 *
 * Prints out the comment feed link for a post. Link text is placed in the
 * anchor. If no link text is specified, default text is used. If no post ID is
 * specified, the current post is used.
 *
 * @since 2.5.0
 *
 * @param string $link_text Descriptive text.
 * @param int    $post_id   Optional post ID. Default to current post.
 * @param string $feed      Optional. Feed format.
*/
function post_comments_feed_link( $link_text = '', $post_id = '', $feed = '' ) {
	$url = esc_url( get_post_comments_feed_link( $post_id, $feed ) );
	if ( empty($link_text) )
		$link_text = __('Comments Feed');

	/**
	 * Filter the post comment feed link anchor tag.
	 *
	 * @since 2.8.0
	 *
	 * @param string $link    The complete anchor tag for the comment feed link.
	 * @param int    $post_id Post ID.
	 * @param string $feed    The feed type, or an empty string for the default feed type.
	 */
	echo apply_filters( 'post_comments_feed_link_html', "$link_text", $post_id, $feed );
}
更新版本 源码位置 使用 被使用
2.5.0 wp-includes/link-template.php:756 1 function 5
类别:WordPress 函数手册

本文收集自互联网,转载请注明来源。
如有侵权,请联系 wper_net@163.com 删除。

评论 (0)COMMENT

登录 账号发表你的看法,还没有账号?立即免费 注册