Custom Post type & Taxonomy URL structure
After forever, I figured out an answer! First: we register the custom post type & custom taxonomy: add_action( ‘init’, ‘register_sps_products_post_type’ ); function register_sps_products_post_type() { register_post_type( ‘sps-product’, array( ‘labels’ => array( ‘name’ => ‘Products’, ‘menu_name’ => ‘Product Manager’, ‘singular_name’ => ‘Product’, ‘all_items’ => ‘All Products’ ), ‘public’ => true, ‘publicly_queryable’ => true, ‘show_ui’ => true, ‘show_in_menu’ … Read more