Home > database >  Feature image field is not showing in dashboard for custom post type
Feature image field is not showing in dashboard for custom post type

Time:07-10

I want my result like this

enter image description here

CodePudding user response:

I think 'supports' parameter missed in your custom post type. Just add following code where you registered your custom post type.

'supports' => array( 'title', 'editor', 'excerpt', 'author', 'thumbnail', 'comments', 'revisions', 'custom-fields', ),

  • Related