| Server IP : 68.178.247.200 / Your IP : 216.73.217.50 Web Server : Apache System : Linux p3plzcpnl489463.prod.phx3.secureserver.net 4.18.0-553.54.1.lve.el8.x86_64 #1 SMP Wed Jun 4 13:01:13 UTC 2025 x86_64 User : x9dppmxs4rgd ( 8559391) PHP Version : 7.4.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/x9dppmxs4rgd/www/wp-content/themes/grace-church/templates/_parts/ |
Upload File : |
<?php
//===================================== Social sharing =====================================
$show_share = grace_church_get_custom_option("show_share");
if (!grace_church_param_is_off($show_share)) {
if( function_exists('tribe_is_month') ){
if(tribe_is_month()) {
$rez = grace_church_show_share_links(array(
'post_link' => tribe_get_events_link(),
'post_title' => 'Events Calendar',
'post_descr' => strip_tags($post_data['post_excerpt']),
'post_thumb' => $post_data['post_attachment'],
'type' => 'block',
'echo' => false
));
} else {
$rez = grace_church_show_share_links(array(
'post_id' => $post_data['post_id'],
'post_link' => $post_data['post_link'],
'post_title' => $post_data['post_title'],
'post_descr' => strip_tags($post_data['post_excerpt']),
'post_thumb' => $post_data['post_attachment'],
'type' => 'block',
'echo' => false
));
}
} else {
$rez = grace_church_show_share_links(array(
'post_id' => $post_data['post_id'],
'post_link' => $post_data['post_link'],
'post_title' => $post_data['post_title'],
'post_descr' => strip_tags($post_data['post_excerpt']),
'post_thumb' => $post_data['post_attachment'],
'type' => 'block',
'echo' => false
));
}
if ($rez) {
?>
<div class="post_info post_info_bottom post_info_share post_info_share_<?php echo esc_attr($show_share); ?>"><?php echo ($rez); ?></div>
<?php
}
}
?>