Define an icon
use PostTypes\PostType;
class Books extends PostType
{
//...
/**
* Returns the admin menu icon for the Books post type.
*
* @return string
*/
public function icon(): string
{
return 'dashicons-book-alt';
}
}Last updated