Fix File
•
/
home
/
sportsfe...
/
httpdocs
/
clone
/
wp-conte...
/
plugins
/
wordpres...
/
src
/
conditio...
/
third-pa...
•
File:
elementor-edit-conditional.php
•
Content:
<?php namespace Yoast\WP\SEO\Conditionals\Third_Party; use Yoast\WP\SEO\Conditionals\Conditional; /** * Conditional that is only met when on an Elementor edit page or when the current * request is an ajax request for saving our post meta data. */ class Elementor_Edit_Conditional implements Conditional { /** * Returns whether this conditional is met. * * @return bool Whether the conditional is met. */ public function is_met() { global $pagenow; // phpcs:ignore WordPress.Security.NonceVerification.Recommended -- Reason: We are not processing form information. if ( isset( $_GET['action'] ) && \is_string( $_GET['action'] ) ) { // phpcs:ignore WordPress.Security.NonceVerification.Recommended,WordPress.Security.ValidatedSanitizedInput.InputNotSanitized -- Reason: We are not processing form information, We are only strictly comparing. $get_action = \wp_unslash( $_GET['action'] ); if ( $pagenow === 'post.php' && $get_action === 'elementor' ) { return true; } } // phpcs:ignore WordPress.Security.NonceVerification.Missing -- Reason: We are not processing form information. if ( isset( $_POST['action'] ) && \is_string( $_POST['action'] ) ) { // phpcs:ignore WordPress.Security.NonceVerification.Missing,WordPress.Security.ValidatedSanitizedInput.InputNotSanitized -- Reason: We are not processing form information, We are only strictly comparing. $post_action = \wp_unslash( $_POST['action'] ); return \wp_doing_ajax() && $post_action === 'wpseo_elementor_save'; } return false; } }
•
Search:
•
Replace:
Function
Edit by line
Download
Information
Rename
Copy
Move
Delete
Chmod
List