Last active
February 11, 2020 21:44
-
-
Save gugaalves/db7ec5007ecb006a4cc6ba06f58751c4 to your computer and use it in GitHub Desktop.
[Plugin] The Events Calendar- Show event category in Monthly view
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* Month Single Event | |
* This file contains one event in the month view | |
* | |
* Override this template in your own theme by creating a file at [your-theme]/tribe-events/month/single-event.php | |
* | |
* @package TribeEventsCalendar | |
* @version 4.6.21 | |
* | |
*/ | |
if ( ! defined( 'ABSPATH' ) ) { | |
die( '-1' ); | |
} | |
global $post; | |
/** | |
* We build and gather information specific to the individual event prior to | |
* the tribe_events_template_data() call to reduce the opportunities for 3rd | |
* party code to call wp_reset_postdata() or similar, which can result in the | |
* $post global referencing something other than the event we're interested | |
* in. | |
*/ | |
$day = tribe_events_get_current_month_day(); | |
$event_id = "{$post->ID}-{$day['date']}"; | |
$link = tribe_get_event_link( $post ); | |
$title = get_the_title( $post ); | |
?> | |
<div id="tribe-events-event-<?php echo esc_attr( $event_id ); ?>" class="<?php tribe_events_event_classes() ?>" data-tribejson='<?php echo esc_attr( tribe_events_template_data( $post ) ); ?>'> | |
<?php echo get_the_term_list( $event_id, 'tribe_events_cat', '<span class="custom_list_event_cat" class="url">', ', ', '</span>' ); ?> | |
<h3 class="tribe-events-month-event-title"><a href="<?php echo esc_url( $link ) ?>" class="url"><?php echo $title ?></a></h3> | |
</div><!-- #tribe-events-event-# --> | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment