WP_Query::is_preview
Determines whether the query is for a post or page preview.
Method of the class: WP_Query{}
No Hooks.
Returns
true|false. Whether the query is for a post or page preview.
Usage
global $wp_query; $wp_query->is_preview();
Changelog
| Since 3.1.0 | Introduced. |
WP_Query::is_preview() WP Query::is preview code WP 6.9
public function is_preview() {
return (bool) $this->is_preview;
}