SO网友:Z. Zlatev
您可以将单个查询强制为404,就像它们不存在一样。
function wpse67329_force_mycpt_single_404() {
if ( is_single() && get_post_type() == \'mycpt\' ) {
global $wp_query;
$wp_query->set_404();
status_header(\'404\');
}
}
add_action( \'template_redirect\', \'wpse67329_force_mycpt_single_404\' );