{"id":4664,"date":"2020-06-14T20:57:27","date_gmt":"2020-06-15T03:57:27","guid":{"rendered":"https:\/\/codedcommerce.com\/?post_type=product&#038;p=4664"},"modified":"2023-10-08T19:50:55","modified_gmt":"2023-10-09T02:50:55","slug":"register-custom-post-types","status":"publish","type":"woo-code","link":"https:\/\/codedcommerce.com\/woo\/register-custom-post-types\/","title":{"rendered":"Register custom post types"},"content":{"rendered":"\n<pre class=\"wp-block-code language-php\"><code>add_action( 'init', function() {\n\n\t\/\/ Post Type\n\t$args = &#91;\n\t\t'labels' => &#91; 'name' => 'Custom Items', 'singular_name' => 'Custom Item' ],\n\t\t'menu_icon' => 'dashicons-admin-site',\n\t\t'supports' => &#91; 'title', 'editor', 'thumbnail' ],\n\t\t'rewrite' => &#91; 'slug' => 'custom_item' ],\n\t\t'has_archive' => true,\n\t\t'show_in_menu' => true,\n\t\t'show_ui' => true,\n\t\t'publicly_queryable' => true,\n\t\t'exclude_from_search' => false,\n\t\t'hierarchical' => false,\n\t\t'can_export' => true,\n\t\t'show_in_nav_menus' => true,\n\t\t'query_var' => true,\n\t\t'show_in_rest' => false,\n\t\t'public' => true,\n\t\t'capability_type' => 'post',\n\t];\n\tregister_post_type( 'custom_item', $args );\n\n\t\/\/ Post Type Category\n\t$args = &#91;\n\t\t'labels' => &#91; 'name' => 'Custom Categories', 'singular_name' => 'Custom Category' ],\n\t\t'hierarchical' => true,\n\t\t'rewrite' => &#91; 'slug' => 'custom_category' ],\n\t\t'show_ui' => true,\n\t\t'show_in_nav_menus' => true,\n\t\t'show_tagcloud' => true,\n\t\t'show_admin_column' => false,\n\t\t'query_var' => true,\n\t\t'show_in_rest' => false,\n\t];\n\tregister_taxonomy( 'custom_category', &#91; 'custom_item' ], $args );\n\n} );<\/code><\/pre>\n","protected":false},"template":"","class_list":["post-4664","woo-code","type-woo-code","status-publish","hentry"],"_links":{"self":[{"href":"https:\/\/codedcommerce.com\/wp-json\/wp\/v2\/woo-code\/4664","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/codedcommerce.com\/wp-json\/wp\/v2\/woo-code"}],"about":[{"href":"https:\/\/codedcommerce.com\/wp-json\/wp\/v2\/types\/woo-code"}],"wp:attachment":[{"href":"https:\/\/codedcommerce.com\/wp-json\/wp\/v2\/media?parent=4664"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}