self_link

函数
self_link ( No parameters )
定义位置
相关方法
get_self_linkrsd_linkget_linkedit_linkpost_reply_link
引入
2.5.0
弃用
-

self_link: 这是一个WordPress的函数,显示当前页面的链接。它通常被用来在WordPress管理区输出当前页面的链接: 这个函数需要一个可选的参数,就是链接文本。

以XSS安全的方式显示当前显示的feed的链接。

为atom:self元素生成一个正确的链接。

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
function self_link() {
/**
* Filters the current feed URL.
*
* @since 3.6.0
*
* @see set_url_scheme()
* @see wp_unslash()
*
* @param string $feed_link The link for the feed with set URL scheme.
*/
echo esc_url( apply_filters( 'self_link', get_self_link() ) );
}
function self_link() { /** * Filters the current feed URL. * * @since 3.6.0 * * @see set_url_scheme() * @see wp_unslash() * * @param string $feed_link The link for the feed with set URL scheme. */ echo esc_url( apply_filters( 'self_link', get_self_link() ) ); }
function self_link() {
	/**
	 * Filters the current feed URL.
	 *
	 * @since 3.6.0
	 *
	 * @see set_url_scheme()
	 * @see wp_unslash()
	 *
	 * @param string $feed_link The link for the feed with set URL scheme.
	 */
	echo esc_url( apply_filters( 'self_link', get_self_link() ) );
}

常见问题

FAQs
查看更多 >