mage-eventpress/templates/template-prts/social_share.php

13 lines
320 B
PHP
Raw Normal View History

2018-07-02 05:44:24 -04:00
<?php
add_action('mep_event_social_share','mep_ev_social_share');
function mep_ev_social_share(){
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
}