我正在尝试删除通过Wordpress中的其他主题设置的自定义帖子类型,现在所有这些帖子都分配给post_type
portfolio
。经过大量的搜索,我找到了下面的代码,但它似乎没有用。我尝试将其添加到新主题和旧主题functions.php
。
我想删除post_type并将帖子分类并显示为普通帖子。我认为我所做的是正确的,但似乎无法让它发挥作用 - 我已经发布了自定义帖子类型的代码和取消注册分配给它的帖子的代码。
取消注册帖子类型的代码
if ( ! function_exists( 'unregister_post_type' ) ) :
function unregister_post_type() {
global $wp_post_types;
if ( isset( $wp_post_types[ 'portfolio' ] ) ) {
unset( $wp_post_types[ 'portfolio' ] );
return true;
}
return false;
}
endif;
add_action('init', 'unregister_post_type');
注册帖子类型的代码
register_post_type( 'portfolio',
array(
'labels' => array(
'name' => __('Portfolio Items'),
'singular_name' => __('Portfolio Item'),
'add_new_item' => __('Add New Portfolio Item'),
'edit_item' => __('Edit Portfolio Item'),
'new_item' => __('New Portfolio Item'),
'view_item' => __('View Portfolio Item'),
'search_items' => __('Search Portfolio Items'),
'not_found' => __('No portfolio items found'),
'not_found_in_trash' => __('No portfolio items found in Trash')
),
'public' => true,
'show_ui' => true,
'hierarchical' => false,
'menu_position' => 7,
//'rewrite' => array('slug' => 'portfolio'),
'rewrite' => true,
'_built_in' => false,
'taxonomies' => array( 'post_tag','category','portfolio_tag', 'portfolio_category', 'client'),
'supports' => array( 'title','editor','author','thumbnail','excerpt','trackbacks','custom-fields','comments','revisions')
)
);
答案 0 :(得分:5)
我可以使用以下代码在WordPress 4.6.1中将其删除:
function delete_post_type(){
unregister_post_type( 'portfolio' );
}
add_action('init','delete_post_type', 100);
答案 1 :(得分:2)
你的代码看起来很棒!但是如果你取消注册post_type ......它中的帖子就会消失......所以不要过早注销它。在取消注册帖子类型之前,将帖子从post_type迁移到普通帖子。这个插件非常方便:https://wordpress.org/plugins/post-type-switcher/
但是,如果您不想将视频帖子迁移到默认帖子......您必须修改您的循环以包含这些组合类型的帖子:
function add_custom_post_type_to_query( $query ) {
if ( $query->is_home() && $query->is_main_query() ) {
$query->set( 'post_type', array('post', 'portfolio') );
}
}
add_action( 'pre_get_posts', 'add_custom_post_type_to_query' );
&安培;在使用自定义帖子类型时,请不要忘记访问固定链接页面,以使WordPress识别您所做的更改。
答案 2 :(得分:0)
尝试此代码(具有较大的优先级编号)
function custom_unregister_theme_post_types() {
global $wp_post_types;
if ( isset( $wp_post_types["portfolio"] ) ) {
unset( $wp_post_types[ "portfolio" ] ); //UPDATED
}
}
add_action( 'init', 'custom_unregister_theme_post_types', 20 );
注意:请确保已注册的帖子类型名称为portfolio
或portfolios
(带s),register_post_type( $ post_type ,$ args)
更新: unset( $wp_post_types[ "portfolio" ] ); //UPDATED
答案 3 :(得分:0)
这是在Wordpress中注销自定义帖子类型的代码。只需记住,您需要从首先注册您的帖子类型的函数中清除您的functions.php。
if( !function_exists( 'prefix_unregister_post_type' ) ) {
function prefix_unregister_post_type() {
unregister_post_type( 'portfolio' );
}
}
add_action('init','prefix_unregister_post_type');