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