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

13 lines
320 B
PHP

<?php
add_action('mep_event_social_share','mep_ev_social_share');
function mep_ev_social_share(){
global $post;
$post_id = $post->ID;
?>
<div class="mep-event-meta">
<?php _e(mep_get_label($post_id,'mep_share_text','Share This Event:'),'mage-eventpress'); ?> <?php mep_social_share(); ?>
</div>
<?php
}