When we register a post type using register_post_type() function, we need to pass two parameters with this function like this: register_post_type( string $post_type, array|string $args = array() ). To get an archive URL for the post type, we need to pass ‘has_archive’ to True in the $args array.
register_post_type('quick-tips',
array(
....
'has_archive' => true,
....
)
);
Then your default archive URL will be like this: https://{your_site_url}/quick-tips/.
Now if you want to modify your default archive URL, we need to pass another argument in the $args array like this:
register_post_type('quick-tips',
array(
....
'has_archive' => true,
'rewrite' => array(
'slug' => 'tips-and-trick'
),
.....
)
);
Then your quick-tips Custom Post Type archive URL will be like this: https://{your_site_url}/tips-and-trick/.
Plugins to Enhance Your WooCommerce Store
Carefully selected tools to help you customize, manage, and optimize your WooCommerce experience.
Woo Parent Category Selector
- Automatically assign parent categories when child categories are selected
- Prevent accidental removal of required parent categories
- Automatically repairs missing parent category assignments during product save
- Bulk repair existing WooCommerce product category structures
- Keeps product category structures organized and consistent
Product Catalog Mode For WooCommerce
- Turn your WooCommerce store into catalog mode instantly
- Hide Add to Cart buttons and product prices conditionally
- Apply rules by user role, country, or scheduled time periods
- Display custom messages and inquiry options for products
- Control visibility settings globally or per product
Remove Add to Cart Button for WooCommerce
- Remove Add to Cart buttons from shop and product pages
- Hide buttons conditionally for selected products or categories
- Replace Add to Cart with custom text or messages
- Control button visibility by user role and product type
- Lightweight settings interface with easy customization
Remove Product Content for WooCommerce
- Hide product title, image, price, rating, and descriptions
- Remove tabs, meta information, SKU, tags, and related products
- Control visibility separately for shop and single product pages
- Customize WooCommerce layouts without coding
- Enable or disable content elements with simple settings
Really Simple XML and HTML Sitemap
- Generate both XML and HTML sitemaps automatically
- Display sitemaps anywhere using ShortCode support
- Include pages, posts, and custom post types
- Exclude selected pages or posts easily
- Supports WPML and Polylang multilingual plugins
