Custom Post Type Category URL
Option 1: Enable the post type archives and use a post type archive template. Enable the archives; e.g. when registering the post type using register_post_type(): register_post_type( ‘shop’, [ ‘has_archive’ => ‘shop’, // the archives are accessible at example.com/shop // … ] ); Then create a custom archive template just for that post type; i.e. archive-shop.php. … Read more