automator_do_identify_tokens()
Only identify and add tokens IF it’s edit recipe page
Return Return
(bool)
Source Source
File: src/global-functions.php
function automator_do_identify_tokens() { if ( isset( $_REQUEST['action'] ) && //phpcs:ignore WordPress.Security.NonceVerification.Recommended ( 'heartbeat' === (string) sanitize_text_field( wp_unslash( $_REQUEST['action'] ) ) || //phpcs:ignore WordPress.Security.NonceVerification.Recommended 'wp-remove-post-lock' === (string) sanitize_text_field( wp_unslash( $_REQUEST['action'] ) ) //phpcs:ignore WordPress.Security.NonceVerification.Recommended ) ) { //phpcs:ignore WordPress.Security.NonceVerification.Recommended // if it's heartbeat, post lock actions bail return false; } if ( ! Automator()->helpers->recipe->is_edit_page() && ! Automator()->helpers->recipe->is_rest() ) { // If not automator edit page or rest call, bail return false; } return true; }
Expand full source code Collapse full source code View on Github