• Resolved krishnac

    (@krishnac)


    Hi,

    I have using this plugin but not supporting the custom post type.
    Please help me!, This is my custom post type code

    $labels = array( ‘name’ => ‘Review’, ‘singular_name’ => ‘Review’, ‘add_new’ => ‘Add New’, ‘add_new_item’ => ‘Add New Review’, ‘edit_item’ => ‘Edit Review’, ‘new_item’ => ‘New Review’, ‘all_items’ => ‘All Reviews’, ‘view_item’ => ‘View Review’, ‘search_items’ => ‘Search Reviews’, ‘not_found’ => ‘No Reviews found’, ‘not_found_in_trash’ => ‘No Reviews found in Trash’, ‘parent_item_colon’ => ”, ‘menu_name’ => ‘Reviews’ );

    $args = array( ‘labels’ => $labels, ‘public’ => true, ‘publicly_queryable’ => true, ‘show_ui’ => true, ‘show_in_menu’ => true, ‘query_var’ => true, ‘rewrite’ => array( ‘slug’ => ‘review’ ), ‘capability_type’ => ‘post’, ‘has_archive’ => true, ‘hierarchical’ => false,’menu_position’ => null,’supports’ => array( ‘title’, ‘thumbnail’,’editor’ ));

    register_post_type( ‘Review’, $args );

Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
  • The topic ‘Not supporting the custom post type’ is closed to new replies.