[vc_row full_width="stretch_row_content_no_spaces" wpex_bg_color="palette-88"][vc_column][vcex_grid_container][vcex_image image_id="976" fill_column="true" el_class="wpex-row-span-2" aspect_ratio="3/4"][vcex_image image_id="973"][vcex_image image_id="981"][vcex_image image_id="982"][vcex_image image_id="978"][/vcex_grid_container][/vc_column][/vc_row]
Custom Category Shortcode
// Add Custom Category Shortcode
function enym_statusx( $atts ) {
// Attributes
$atts = shortcode_atts(
array(
'label' => '',
'class' => '',
'link'=>''
),
$atts
);
global $post;
//$terms = wp_get_post_terms( $atts['post_id'], $atts['taxonomy']);
//$term = get_term( '24', 'objektart' );
$terms = wp_get_post_terms( $post->ID, 'projektstatus' );
//print_r($terms);
$tax = $terms[0]->term_id;
$name = $terms[0]->name;
return $name;
}
add_shortcode( 'category_status', 'enym_statusx' );
