Pages

Thursday, December 19, 2013

Custom post type redirect to home page + wordpress

Please write below code in functions.php

add_action("template_redirect", 'template_redirect_news');

function template_redirect_news()
{
global $wp;
$custom_post_types = array("faq" , "testimonial"); // please write here which custom post type you want to redirect to home page

if (in_array($wp->query_vars["post_type"], $custom_post_types))
{
if($wp->query_vars["name"]):
wp_redirect(get_site_url());
die();
endif;
}
}


No comments: