Support

Account

Home Forums Backend Issues (wp-admin) How to hide the Post Title on screen? Reply To: How to hide the Post Title on screen?

  • to hide title from backend you can/need to set up a custom post-type that has that setting.

    at your “register_post_type” function change/replace/add this line:
    'supports' => array('revisions'),
    then only revisions shows at backend, no title, no exerpt, wysiwyg, … , leave blank to show nothing except your acf
    of course you can use any needed value out of this instead or additional to revisions (list is not complete, look at wp reference)
    array( 'title', 'editor', 'author', 'thumbnail', 'excerpt', 'comments' )