is_noptin_actions_page()
Checks if this is a noptin actions page
Return Return
(bool)
Source Source
File: includes/functions.php
function is_noptin_actions_page() { $matched_var = get_query_var( 'noptin_newsletter' ); if ( ! empty( $matched_var ) ) { return true; } // Backwards compatibility. $page = get_noptin_action_page(); return ! empty( $page ) && is_page( $page ); }
Expand full source code Collapse full source code View on GitHub
Changelog Changelog
Version | Description |
---|---|
1.2.0 | Introduced. |