Define Options
use PostTypes\PostType;
class Books extends PostType
{
//...
/**
* Returns the options for the Books post type.
*
* @return array
*/
public function options(): array
{
return [
'public' => true,
'show_in_rest' => true,
];
}
}Last updated