📁 File Manager Pro
v10.0.3 | PHP: 7.4.33
Server: LiteSpeed
2026-06-26 10:19:37
📂
/ (Root)
/
home
/
supecsoq
/
public_html
/
domains
/
migalexpark.com
/
wp-content
/
plugins
/
wordpress-seo
/
src
/
helpers
📍 /home/supecsoq/public_html/domains/migalexpark.com/wp-content/plugins/wordpress-seo/src/helpers
🔄 Refresh
✏️
Editing: redirect-helper.php
Writable
<?php namespace Yoast\WP\SEO\Helpers; /** * A helper object for redirects. */ class Redirect_Helper { /** * Wraps wp_redirect to allow testing for redirects. * * @codeCoverageIgnore It only wraps a WordPress function. * * @param string $location The path to redirect to. * @param int $status The status code to use. */ public function do_unsafe_redirect( $location, $status = 302 ) { // phpcs:ignore WordPress.Security.SafeRedirect -- intentional, function has been renamed to make unsafe more clear. \wp_redirect( $location, $status, 'Yoast SEO' ); exit; } /** * Wraps wp_safe_redirect to allow testing for safe redirects. * * @codeCoverageIgnore It only wraps a WordPress function. * * @param string $location The path to redirect to. * @param int $status The status code to use. */ public function do_safe_redirect( $location, $status = 302 ) { \wp_safe_redirect( $location, $status, 'Yoast SEO' ); exit; } /** * Wraps wp_redirect to allow testing for redirects. * * @deprecated 16.x * @codeCoverageIgnore It only wraps a WordPress function. * * @param string $location The path to redirect to. * @param int $status The status code to use. */ public function do_redirect( $location, $status = 302 ) { \_deprecated_function( __METHOD__, 'WPSEO 16.x', 'Yoast\WP\SEO\Helpers\Redirect_Helper::do_unsafe_redirect' ); $this->do_unsafe_redirect( $location, $status ); } }
💾 Save Changes
❌ Cancel