Launch offer
Business website $150 USD Custom plugin $200 USD Ready in 5 days
Get a quote
WordPress Plugin Development

Custom Post Types

Register custom post types for content that is not a normal post/page.

WordPress Plugin Development Series (32/95). Prefer one article? Read the complete WordPress plugin development tutorial.

Short description

CPTs power portfolios, products, FAQs, and more. Set labels, supports, and rewrite carefully.

Register CPT

add_action('init', function () {
    register_post_type('book', [
        'label' => 'Books',
        'public' => true,
        'show_in_rest' => true,
        'supports' => ['title', 'editor', 'thumbnail'],
        'has_archive' => true,
    ]);
});

Leave a reply

Your email address will not be published. Required fields are marked *