golden hour
/home/godaofbq/elitehyperbarics.com/wp-content/plugins/wordpress-seo/src/deprecated/src/helpers
⬆️ Go Up
Upload
File/Folder
Size
Actions
indexables-page-helper.php
5.9 KB
Del
OK
input-helper.php
815 B
Del
OK
request-helper.php
539 B
Del
OK
wordproof-helper.php
2.55 KB
Del
OK
Edit: request-helper.php
<?php namespace Yoast\WP\SEO\Helpers; /** * A helper object for the request state. * * @codeCoverageIgnore Because of deprecation. */ class Request_Helper { /** * Checks if the current request is a REST request. * * @return bool True when the current request is a REST request. * * @deprecated 23.6 * @codeCoverageIgnore */ public function is_rest_request() { \_deprecated_function( __METHOD__, 'Yoast SEO 23.6', 'wp_is_serving_rest_request' ); return \defined( 'REST_REQUEST' ) && \REST_REQUEST === true; } }
Save