Ребят, какой редирект с несуществующих страниц будет работать быстрее? например через functions.php Темы add_action( 'template_redirect', 'redirect_404_to_any_url' );
function redirect_404_to_any_url() {
if ( is_404() ) :
wp_redirect( '/test-page', 301 );
exit;
endif;
} или плагин