mailpoet_is_email_editor_page
mailpoet_is_email_editor_page
Appears in: woocommerce.9.8.1
Hook Type: filter
See hook in action
Displaying hooks found in version: woocommerce.9.8.1apply_filters('mailpoet_is_email_editor_page') is found 1 times:
- /packages/email-editor/src/Engine/class-email-editor.php line 94
$this->register_email_post_types(); $this->register_block_templates(); $this->register_email_post_sent_status(); $this->register_personalization_tags(); $is_editor_page = apply_filters( 'mailpoet_is_email_editor_page', false ); if ( $is_editor_page ) { $this->extend_email_post_api(); } add_action( 'rest_api_init', array( $this, 'register_email_editor_api_routes' ) ); add_filter( 'mailpoet_email_editor_send_preview_email', array( $this->send_preview_email, 'send_preview_email' ), 11, 1 ); // allow for other filter methods to take precedent. add_filter( 'single_template', array( $this, 'load_email_preview_template' ) );