wp+create custom post type and category

function create_posttype() {
  register_post_type( 'wpll_product',
    array(
      'labels' => array(
        'name' => __( 'Products' ),
        'singular_name' => __( 'Product' )
      ),
      'public' => true,
      'has_archive' => true,
      'rewrite' => array('slug' => 'products'),
    )
  );
}
add_action( 'init', 'create_posttype' );

3.8
5
OscarE 85 points

                                    add_action( 'init', 'create_news' );
function create_news ()
{      
    register_post_type( 'ecommerces',
                array(
                'labels'        => array(
                'name'          => __( 'Ecommerces' ),
                'singular_name' => __( 'Ecommerce' )
                ),
                'public'   => true,
                'supports' => array ('title', 'editor', 'thumbnail')
                )
                );

    register_taxonomy(
                'ecommerce_cat',
                'ecommerces',
                array(
                'labels' => array(
                'name' => 'Ecommerce Categories',
                'add_new_item' => 'Add New Ecommerce Category',
                'new_item_name' => "New Ecommerce Category"
                ),
                'show_ui' => true,
                'show_tagcloud' => false,
                'hierarchical' => true,
                'hasArchive' => true
                )
                );

    }

    if ( function_exists( 'add_theme_support' ) ) {
    add_theme_support( 'post-thumbnails' );
    set_post_thumbnail_size( 100, 100, true ); 
}

    ?>

3.8 (5 Votes)
0
Are there any code examples left?
Create a Free Account
Unlock the power of data and AI by diving into Python, ChatGPT, SQL, Power BI, and beyond.
Sign up
Develop soft skills on BrainApps
Complete the IQ Test
Relative searches
create new post type wp is_category for custom post type how to use custom post type in wordpress how do I add category to my custom post type wp_insert custom post type wordpress get custom category of custom post type wp insert custom post type wordpress create custom post type with taxonomy wordpress make custom post type category custom post type wp category specifc to post type wp query get category of custom post type wordpress create your own post types how to show custom post type category in wordpress wp custom post type or wpbd wp custom post type or database add ceparate category wp custom post type page for custom post type category how to make custom post type in wordpress how to add category in custom post type wp_query category custom post type show category custom post type wordpress how to get custom post type category list in wordpress get custom post type categories wordpress how can create category to custom post type get custom post type category name in wordpress add categories in wordpress custom post type wp query custom post type category wordpress template for custom post type category custom post type terms category display categories create a custom post type wordpress wp custom post type get categories creating custom post types in wordpress how to add custom post type in wpbakery wordpress custom post type supports category wordpress custom post type explained wordpress custom post type taxonomy category create a custom post type in wordpress how to create custom post type in wordpress wp create a custom post type wordpress add categories to custom post type wordpress custom post types layouts wp add custom post type wordpress post type create category add categories to custom post type wordpress create custom post type with category in wordpress how to get custom post type category in wordpress how to get custom post type category name in wordpress category in custom post type wp get custom post type category wp category page custom post type how to create custom post type category in wordpress wordpress custom post type with fields wordpress custom post type and fields create custom post type and taxonomy in wordpress how to display custom post type category in wordpress query link custom post type wordpress category custom category custom post type create custom post type in wordpress wp categories as custom post type add category in custom post type wordpress display custom post type category name wordpress add category to custom post type wp create custom post type create custom post type category wp custom post types wordpress php create custom post type create new post type wordpress add category to custom post type wordpress custom post types add custom post type to category wordpress what is wordpress custom post type how to add category and tag in custom post type in wordpress wordpress custom post type get custom post type category list in wordpress create custom post type wordpress how to add categories to custom post types in wordpress wordpress get custom post type category WordPress category template for custom post type create category for custom post type wordpress how to display custom post type categories in wordpress wordpress add support category to custom post type wordpress list custom post type add custom post type category in wordpress wordpress custom post type category custom post type category custom post type wordpress category wordpress custom post type use category add custom category to custom post type wp custom post type listing how to add category to custom post type wordpress custom post type with category in wordpress wp custom post type display wordpress custom post type categorys wordpress custom post type category widget how to add category in custom post type in wordpress how to display custom post type category in wordpress wp_list_categories custom post type wordpress create category widget for custom post type wordpress add category widget for custom post type custom post type add category wordpress make terms to custom post type wordpress create matching category terms to custom post type add custom post types to a category WP wordpress post types array between custom wordpress company list custom post wordpress custom post category wordpress display post-type products in a form for selection how to insert custom posts in a page wordpress is custom post type create custom post categories wordpress custom post categories wordpress add custom posts php custom post types what is woocommerce shop what is custom post type in wordpress wordpress add custom post types how to get custom category in wordpress call custom post type use custom post type info on page wordpress get custom post type by category wordpress get categories of custom post type custom post types php file admin how to create custom post type plugin how to create custom post type in wordpress without plugin get custom post type standar page for custom post type wordpress custom post type main page wordpress category custom post type making a posttype simular to comments What are all of the fields that WP Generate creates for the custom post type wp+create custom post type and category
Made with love
This website uses cookies to make IQCode work for you. By using this site, you agree to our cookie policy

Welcome Back!

Sign up to unlock all of IQCode features:
  • Test your skills and track progress
  • Engage in comprehensive interactive courses
  • Commit to daily skill-enhancing challenges
  • Solve practical, real-world issues
  • Share your insights and learnings
Create an account
Sign in
Recover lost password
Or log in with

Create a Free Account

Sign up to unlock all of IQCode features:
  • Test your skills and track progress
  • Engage in comprehensive interactive courses
  • Commit to daily skill-enhancing challenges
  • Solve practical, real-world issues
  • Share your insights and learnings
Create an account
Sign up
Or sign up with
By signing up, you agree to the Terms and Conditions and Privacy Policy. You also agree to receive product-related marketing emails from IQCode, which you can unsubscribe from at any time.
Creating a new code example
Code snippet title
Source