Code: Select all
function display_class_category() {
$target_categories = array( 'bread', 'cake', 'brownie' );
if ( has_category( $target_categories ) ) {
$categories = get_the_category( get_the_ID() );
foreach ( $categories as $category ) {
if ( in_array( $category->slug, $target_categories ) ) {
$category_link = get_category_link( $category->term_id );
return ' ' . esc_html( $category->name ) . ' ';
}
}
}
return '';
}
add_shortcode( 'class_category', 'display_class_category' );
Mobile version