WordPress 自定义文章类型用很多组件,当我们不需要的时候可以通过 remove_post_type_support() 函数来移除掉,下边是一份可以移除的组件的列表:

  • title
  • editor
  • author
  • thumbnail
  • excerpt
  • trackbacks
  • custom-fields
  • comments
  • revisions
  • page-attributes
  • post-formats

比如移除掉自带的 “文章” 文章类型的评论功能:

    *https://www.weixiaoduo.com/remove-post-type-support/
functionBing_remove_post_type_support(){
    remove_post_type_support(‘post’,‘comments’);
add_action(‘init’,‘Bing_remove_post_type_support’);

更多关于 remove_post_type_support() 函数:http://codex.WordPress.org/Function_Reference/remove_post_type_support