How would I leverage custom Taxonomies in this scenario?
First I would create a new custom post type called Trips. Add this to your theme’s functions.php //trips Custom Post Type add_action( ‘init’, ‘create_trips_post_type’ ); function create_trips_post_type() { register_post_type( ‘trips’, array( ‘labels’ => array( ‘name’ => __( ‘Trips’ ), ‘singular_name’ => __( ‘Trips’ ) ), ‘public’ => true, ‘has_archive’ => true, ‘hierarchical’ => true, ‘supports’ … Read more