让我们假设,(www.example/services/washing)-我需要隐藏(services)CPT,我试过这段代码,但没有工作。有人能帮忙吗?
add_action( 'init', 'update_my_custom_type', 99 );
function update_my_custom_type() {
global $wp_post_types;
if ( post_type_exists( 'services' ) ) {
// exclude from search results
$wp_post_types['services']->exclude_from_search = true;
}
}
1条答案
按热度按时间frebpwbc1#
要在搜索引擎中隐藏CPT,请将以下 meta标签添加到
header.php
文件。用您要隐藏的自定义帖子类型替换your-cpt
。