父主题注册了一个名为risen_event 的自定义帖子类型。我决定使用另一个日历插件,因此想从用户那里删除这个管理菜单项。
在子主题中,我尝试了此功能,但没有用
if ( ! function_exists( 'unregister_post_type' ) ) :
function unregister_post_type( $post_type ) {
global $wp_post_types;
if ( isset( $wp_post_types[ $post_type ] ) ) {
unset( $wp_post_types[ $post_type ] );
return true;
}
return false;
}
endif;