WP_Query::is_privacy_policy
Determines whether the query is for the Privacy Policy page.
This is the page which shows the Privacy Policy content of your site.
Depends on the site's "Change your Privacy Policy page" Privacy Settings 'wp_page_for_privacy_policy'.
This function will return true only on the page you set as the "Privacy Policy page".
Method of the class: WP_Query{}
No Hooks.
Returns
true|false. Whether the query is for the Privacy Policy page.
Usage
global $wp_query; $wp_query->is_privacy_policy();
Changelog
| Since 5.2.0 | Introduced. |
WP_Query::is_privacy_policy() WP Query::is privacy policy code WP 7.0
public function is_privacy_policy() {
if ( get_option( 'wp_page_for_privacy_policy' )
&& $this->is_page( get_option( 'wp_page_for_privacy_policy' ) )
) {
return true;
} else {
return false;
}
}