Support

Account

Home Forums General Issues Custom Post Type as WordPress Front/Home Reply To: Custom Post Type as WordPress Front/Home

  • How can I add a custom post type using Gutenberg editor? I am trying but having some issues in code.

    array(
    ‘labels’ => array(
    ‘name’ => __( ‘Portfolio’ ),
    ‘singular_name’ => __( ‘Portfolio’ )
    ),
    ‘has_archive’ => true,
    ‘public’ => true,
    ‘rewrite’ => array(‘slug’ => ‘portfolio’),

    I am using this tutorial as reference https://www.cloudways.com/blog/gutenberg-wordpress-custom-post-type/