seredniy
9/12/2016 - 7:29 PM

Показываем 404 ошибку когда хотим

Показываем 404 ошибку когда хотим

function my_page_template_redirect(){
	if(is_single() AND post_is_in_descendant_category( 5 ) ){
		status_header(404);
	nocache_headers();
	include( get_404_template() );
	exit;
	}
}
add_action( 'template_redirect', 'my_page_template_redirect' );