2018-07-02 05:44:24 -04:00
|
|
|
<?php
|
|
|
|
add_action('mep_event_social_share','mep_ev_social_share');
|
|
|
|
|
|
|
|
|
|
|
|
function mep_ev_social_share(){
|
2018-07-03 08:16:19 -04:00
|
|
|
global $post;
|
|
|
|
$post_id = $post->ID;
|
2018-07-02 05:44:24 -04:00
|
|
|
?>
|
|
|
|
<div class="mep-event-meta">
|
2018-10-31 05:47:54 -04:00
|
|
|
<?php _e(mep_get_label($post_id,'mep_share_text','Share This Event:'),'mage-eventpress'); ?> <?php mep_social_share(); ?>
|
2018-07-02 05:44:24 -04:00
|
|
|
</div>
|
|
|
|
<?php
|
|
|
|
}
|