Define feature supports
use PostTypes\PostType;
class Books extends PostType
{
//...
/**
* Returns features the Books post type supports.
*
* @return array
*/
public function supports(): array
{
return [
'title',
'editor',
'custom-fields',
];
}
}Last updated