Es posible que desee eliminar el soporte para las características específicas de tipo de mensaje de su sección de edición de mensajes en WordPress. Cada característica tiene un código que se da a continuación para ayudar a eliminar el soporte.
Instrucciones: Agregue el siguiente código al archivo functions.php de su tema de WordPress.
Usted necesita cambiar la palabra ‘post’ a cualquier cosa que te gusta incluyendo un nombre de tipo de mensaje personalizado o el puesto por defecto, página.
//'title' (Post Title) //'editor' (content) //'author' (Author controls) //'thumbnail' (featured image) (current theme must also support Post Thumbnails) //'excerpt' (Excerpt functionality) //'trackbacks' (Options) //'custom-fields' (Custom Fields) //'comments' (also will see comment count balloon on edit screen) //'revisions' (will store revisions) //'page-attributes' (template and menu order) (hierarchical must be true) add_action( 'admin_init', 'wps_cpt_support' ); function wps_cpt_support() { remove_post_type_support( 'post', 'title' ); remove_post_type_support( 'post', 'comments' ); }
También te puede gustar Social by MailChimp Broadcast custom post type.
Is there an equivalent function for removing custom post type fields from an edit screen?