Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- register_post_type('catalog', [
- 'label' => null,
- 'labels' => [
- 'name' => 'Catalog',
- 'singular_name' => 'Product',
- 'add_new' => 'Add new',
- 'add_new_item' => 'Add new product',
- 'edit_item' => 'Edit product',
- 'new_item' => 'New product',
- 'view_item' => 'View product',
- 'search_items' => 'Find product',
- 'not_found' => 'Products nof found',
- 'not_found_in_trash' => 'In basket product not found',
- 'parent_item_colon' => '',
- 'menu_name' => 'Catalog',
- ],
- 'description' => '',
- 'public' => true,
- 'show_in_rest' => true,
- 'hierarchical' => false,
- 'supports' => ['title', 'editor', 'thumbnail'],
- 'taxonomies' => ['products'],
- 'has_archive' => 'catalog',
- 'rewrite' => [
- 'slug' => 'catalog/%products%',
- 'with_front' => false,
- ],
- 'query_var' => true,
- ]);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement