自定义帖子类型名称为;项目;。我需要函数中的代码。php
这适用于搜索:
// Exclude custom post type from WP Search
add_action( \'init\', \'update_my_custom_type\', 99 );
function update_my_custom_type() {
global $wp_post_types;
if ( post_type_exists( \'project\' ) ) {
// exclude from search results
$wp_post_types[\'project\']->exclude_from_search = true;
}
}
我找不到/博客页面的解决方案。