函数原型
is_privacy_policy(): bool
函数描述
Determines whether the query is for the Privacy Policy page.
是否弃用
未弃用
函数参数
无
函数返回值
bool Whether the query is for the Privacy Policy page.
函数位置
File: wp-includes/query.php.
函数源码
function is_privacy_policy() {
global $wp_query;
if ( ! isset( $wp_query ) ) {
_doing_it_wrong( __FUNCTION__, __( 'Conditional query tags do not work before the query is run. Before then, they always return false.' ), '3.1.0' );
return false;
}
return $wp_query->is_privacy_policy();
}
源码链接
变更日志
| Version | Description |
|---|---|
| 5.2.0 | Introduced. |

