|
Server : Apache System : Linux s1230 5.15.0-139-generic #149~20.04.1 SMP Tue Jul 14 11:21:49 UTC 2026 x86_64 User : p141464 ( 418825) PHP Version : 7.4.33.12 Disable Function : NONE Directory : /html/wordpress-old/wp-content/plugins/redirection/actions/ |
Upload File : |
<?php
class Error_Action extends Red_Action
{
function can_change_code () { return true; }
function can_perform_action () { return false; }
function action_codes ()
{
return array
(
404 => get_status_header_desc (404),
410 => get_status_header_desc (410)
);
}
function process_after ()
{
global $wp_query;
$wp_query->is_404 = true;
// Page comments plugin interferes with this
remove_filter ('template_redirect', 'paged_comments_alter_source', 12);
}
}