Only display main feed

Home » Snippets » Only display main feed
0

Created with:

Custom snippet Generator

Visibility: 

public

Creator: Julio POTIER

Customize with WPTurbo AI
X

Add Snippet To Project

New Project
Add To Existing Project
				<?php
add_action( 'template_redirect', 'custom_410_for_feeds' );
function custom_410_for_feeds() {
    if ( is_feed() && '/feed/' !== trailingslashit( $_SERVER['REQUEST_URI'] ) ) {
        status_header( 410 );
        exit;
    }
}
			

Register an account to save your snippets or go Pro to get more features.