📁 File Manager Pro
v10.0.3 | PHP: 7.4.33
Server: LiteSpeed
2026-06-26 12:42:03
📂
/ (Root)
/
home
/
supecsoq
/
public_html
/
domains
/
migalexpark.com
/
wp-content
/
plugins
/
wordpress-seo
/
src
/
deprecated
/
frontend
📍 /home/supecsoq/public_html/domains/migalexpark.com/wp-content/plugins/wordpress-seo/src/deprecated/frontend
🔄 Refresh
✏️
Editing: class-handle-404.php
Writable
<?php /** * WPSEO plugin file. * * @package WPSEO\Frontend */ /** * Class WPSEO_Handle_404 * * Handles intercepting requests. * * @deprecated 14.0 * * @since 9.4 */ class WPSEO_Handle_404 implements WPSEO_WordPress_Integration { /** * Registers all hooks to WordPress. * * @codeCoverageIgnore * @deprecated 14.0 * * @return void */ public function register_hooks() { _deprecated_function( __METHOD__, 'WPSEO 14.0' ); } /** * Handle the 404 status code. * * @codeCoverageIgnore * @deprecated 14.0 * * @param bool $handled Whether we've handled the request. * * @return bool True if it's 404. */ public function handle_404( $handled ) { _deprecated_function( __METHOD__, 'WPSEO 14.0' ); return $handled; } }
💾 Save Changes
❌ Cancel