Uses
Uses | Description |
---|---|
wp-includes/class-wp-query.php: WP_Query::is_page() | Is the query for an existing single page? |
wp-includes/option.php: get_option() | Retrieves an option value based on an option name. |
Is the query 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".
(bool) Whether the query is for the Privacy Policy page.
File: wp-includes/class-wp-query.php
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; } }
Version | Description |
---|---|
5.2.0 | Introduced. |
© 2003–2019 WordPress Foundation
Licensed under the GNU GPLv2+ License.
https://developer.wordpress.org/reference/classes/wp_query/is_privacy_policy