Men
Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos. Mauris in erat justo. Nullam ac urna eu felis dapibus condimentum sit amet a augue. Sed non neque elit sed ut.
Showing all 2 results
-
function custom_auto_insert_event_category_description() {
// Check if we're on a taxonomy page for 'tribe_events_cat' or another event taxonomy
if (is_tax('tribe_events_cat')) {
$term_description = term_description();
// Check if there's a description to display
if (!empty($term_description)) {
echo '
' . $term_description . '
';
}
}
}
// Adjust the hook to where you want the description to appear. This example uses 'tribe_events_before_main_content'.
add_action('tribe_events_before_main_content', 'custom_auto_insert_event_category_description');