1. how do you get rid of the post menu on the admin ui?
简单,只需取消注册
post
岗位类型。没有一个默认的函数来实现这一点,但是一个核心开发人员(
Nacin) 在WP Trac记录单上发布了一些示例代码,说明了如何执行此操作:
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;
2. any issues of skipping the post type and not using it at all?
请注意,不建议取消注册默认帖子类型。仅仅因为你能做某事并不意味着你应该做。我最好的建议是首先使用默认帖子作为你的文章。
记住,帖子和页面的注册与其他CPT一样So注销posts
只是为了注册articles
类似于重新发明轮子。