get_privacy_policy_url

函数
get_privacy_policy_url ( No parameters )
返回值
  • (string) The URL to the privacy policy page. Empty string if it doesn't exist.
定义位置
相关方法
get_the_privacy_policy_linkget_privacy_policy_templatethe_privacy_policy_linkis_privacy_policywp_privacy_exports_url
引入
4.9.6
弃用
-

get_privacy_policy_url函数是一个WordPress函数,用于检索到隐私政策页面的URL: 这个函数不接受任何参数,并返回到隐私政策页面的URL。

检索隐私政策页面的URL。

function get_privacy_policy_url() {
	$url            = '';
	$policy_page_id = (int) get_option( 'wp_page_for_privacy_policy' );

	if ( ! empty( $policy_page_id ) && get_post_status( $policy_page_id ) === 'publish' ) {
		$url = (string) get_permalink( $policy_page_id );
	}

	/**
	 * Filters the URL of the privacy policy page.
	 *
	 * @since 4.9.6
	 *
	 * @param string $url            The URL to the privacy policy page. Empty string
	 *                               if it doesn't exist.
	 * @param int    $policy_page_id The ID of privacy policy page.
	 */
	return apply_filters( 'privacy_policy_url', $url, $policy_page_id );
}

常见问题

FAQs
查看更多 >