Skip to content

Instantly share code, notes, and snippets.

@tevashov
Last active October 27, 2022 21:56
Show Gist options
  • Select an option

  • Save tevashov/5172448 to your computer and use it in GitHub Desktop.

Select an option

Save tevashov/5172448 to your computer and use it in GitHub Desktop.
Add custom post type #WP
$args = array(
'label' => __('Products'),
'singular_label' => __('Product'),
'public' => true,
'show_ui' => true,
'capability_type' => 'page',
'hierarchical' => false,
'rewrite' => true,
'query_var' => 'products',
'supports' => array('title', 'thumbnail')
);
register_post_type( 'product' , $args );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment