generate functionSun, 11 Dec 2022

wordpress redirect feed to homepage

function my_feed_redirect(){ global $wp_query; if( is_feed() ) { wp_redirect( esc_url_raw( get_permalink( get_page_by_path( 'index' ) ) ), 301 ); exit; } } add_action( 'template_redirect', 'my_feed_redirect' );

Questions about programming?Chat with your personal AI assistant