Support

Account

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

Helping

How to hide the Post Title on screen?

  • The Post’s Title isn’t in the list of fields which can be hidden “on screen”. I’d like to not show it however, in the Post edit screen. (I display a page title based on the content of the other fields.)

    Has anyone found a way to hide it?

  • 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' )

Viewing 2 posts - 1 through 2 (of 2 total)

The topic ‘How to hide the Post Title on screen?’ is closed to new replies.