get_privacy_policy_template

函数
get_privacy_policy_template ( No parameters )
返回值
  • (string) Full path to privacy policy template file.
相关
  • get_query_template()
定义位置
相关方法
get_privacy_policy_urlget_the_privacy_policy_linkthe_privacy_policy_linkwp_add_privacy_policy_contentget_page_template
引入
5.2.0
弃用
-

get_privacy_policy_template函数是一个WordPress函数,用于检索隐私政策模板文件的路径: 这个函数不接受任何参数,并返回隐私政策模板文件的路径。

检索当前模板或父模板中的隐私政策页面模板的路径。

模板层次和模板路径可通过{@see ‘$type_template_hierarchy’}和{@see ‘$type_template’}动态钩子过滤,其中`$type`为’privacypolicy’。

function get_privacy_policy_template() {
	$templates = array( 'privacy-policy.php' );

	return get_query_template( 'privacypolicy', $templates );
}

常见问题

FAQs
查看更多 >