wpseek.com
WordPress开发者和主题制作者的搜索引擎



the_permalink_rss › WordPress Function

Since2.3.0
已弃用n/a
the_permalink_rss ( 没有参数 )
定义在:
文档:

Displays the permalink to the post for use in feeds.



源码

function the_permalink_rss() {
	/**
	 * Filters the permalink to the post for use in feeds.
	 *
	 * @since 2.3.0
	 *
	 * @param string $post_permalink The current post permalink.
	 */
	echo esc_url( apply_filters( 'the_permalink_rss', get_permalink() ) );
}