ewels / CPT-Bootstrap-Carousel

WordPress plugin which generates a custom post type for choosing images and content. Outputs Bootstrap Image Carousel (slider) HTML from a shortcode.
http://wordpress.org/plugins/cpt-bootstrap-carousel/
GNU General Public License v2.0
51 stars 36 forks source link

Update category code #54

Closed ewels closed 9 years ago

ewels commented 9 years ago

Update line 43 of cptbc-frontend.php to use the updated category code:

$args['tax_query'][] = array(
    "taxonomy"  => "carousel_category",
    "field"     => "slug",
    "terms"     => $atts['category'],
    "operator"  => "IN"
);

See this forum post for discussion.