How to create 410 page for removed content for SEO?

Posted in: Newspaper
Post count: 1

Hi,

I’m cleaning up website and want/need to create 410 error page for SEO purpose. 404 is not suitable here.
Is it possible to do in Newspaper theme?

Post count: 27744

Hello,

You can use a plugin or please check this guide https://www.stechies.com/change-404-page-410-page-wordpress/

Thank you!

Post count: 8

Hi

I tried this code as snippet but it don’t work. 404 page don’t load

add_action(‘template_redirect’, ‘wp_custom_410’);
function wp_custom_410() {
if (is_404()) {
status_header(410);
nocache_headers();
include(get_template_directory() . ‘/404.php’);
exit;
}
}

Any help

Post count: 27744

Hi,

Please try to use a plugin for this, it is easier if something does not work well to disable the plugin rather than deleting it from the code.

Thank you!

Viewing 4 posts - 1 through 4 (of 4 total)
The forum ‘Newspaper’ is closed to new topics and replies.