Create a Post Type
use PostTypes\PostType;
class Books extends PostType
{
/**
* Returns the post type name to register to WordPress.
*
* @return string
*/
public function name(): string
{
return 'book';
}
}Register PostType to WordPress
// Instantiate the Books PostType class.
$books = new Books;
// Register the books PostType to WordPress.
$books->register();Last updated