CannaBizWeek – Add Categories to WP Dispensary Shortcodes

function cannabiz_wpd_shortcode_categories() { if ( in_array( get_post_type(), array( ‘flowers’, ‘prerolls’ ) ) ) { ?> <div class="cannabiz-categories"><?php echo get_the_term_list( get_the_id(), ‘flowers_category’, ”, ‘, ‘ ); ?></div> <?php } if ( in_array( get_post_type(), array( ‘concentrates’ ) ) ) { ?> <div class="cannabiz-categories"><?php echo get_the_term_list( get_the_id(), ‘concentrates_category’, ”, ‘, ‘ ); ?></div> <?php } if ( in_array( […]

 

CannaBizWeek – Add Categories to WP Dispensary Shortcodes Style

.cannabiz-categories { position: absolute; top: 10px; left: 10px; } .cannabiz-categories a, .cannabiz-categories a:visited { color: #FFF; background: #76BD1D; padding: 5px; border-radius: 3px; font-size: 13px; } .cannabiz-categories a:hover { color: #FFF; background: #8224e3; }