15 lines
341 B
PHP
Executable File
15 lines
341 B
PHP
Executable File
<?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
|
|
}
|