Custom Post Types

Custom Post Types

If you want to create a custom post type by yourself, add this to your functions.php file:
function register_books_cpt() {
    register_post_type('book', [
        'label' => 'Books',
        'public' => true,
        'supports' => ['title', 'editor', 'thumbnail'],
        'has_archive' => true,
        'menu_icon' => 'dashicons-book',
    ]);
}
add_action('init', 'register_books_cpt');

Custom post types? Youʼre officially out of blog-mode. Maybe you could consider to create a custom plugin… 📚⚔