generate functionMon, 12 Dec 2022

wordpress redirect feed to homepage

add_action( 'template_redirect', 'wph_redirect_feed' ); function wph_redirect_feed() { if ( is_feed() ) { wp_redirect( esc_url_raw( home_url() ), 301 ); exit; } }

Questions about programming?Chat with your personal AI assistant