| Server IP : 216.250.13.251 / Your IP : 216.73.217.37 Web Server : nginx/1.24.0 System : Linux gunay 6.8.0-134-generic #134-Ubuntu SMP PREEMPT_DYNAMIC Fri Jun 26 18:43:11 UTC 2026 x86_64 User : root ( 0) PHP Version : 7.4.33 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare, MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : OFF Directory : /var/www/gunay/wp-content/plugins/rt19-extentions/inc/shortcodes/ |
Upload File : |
<?php
if( ! function_exists("rt_social_media_share") ){
/**
* Social Media Share Shortcode
*
* @global class $post
*
* @param array $atts
* @param string $content
* @return string $output
*/
function rt_social_media_share( $atts = array(), $content = null ) {
global $post;
//Available Social Media Icons
$rt_social_share_list =apply_filters("rt_social_media_list",array(
"Email" => array("icon_name" => "mail", "url" => "mailto:?body=[URL]", "popup" => false ),
"Twitter" => array("icon_name" => "twitter", "url" => "http://twitter.com/intent/tweet?text=[TITLE]+[URL]", "popup" => true ),
"Facebook" => array("icon_name" => "facebook", "url" => "http://www.facebook.com/sharer/sharer.php?u=[URL]&title=[TITLE]", "popup" => true ),
"Google +" => array("icon_name" => "gplus", "url" => "https://plus.google.com/share?url=[URL]", "popup" => true ),
"Pinterest" => array("icon_name" => "pinterest", "url" => "http://pinterest.com/pin/create/bookmarklet/?media=[MEDIA]&url=[URL]&is_video=false&description=[TITLE]", "popup" => true ),
"Tumblr" => array("icon_name" => "tumblr", "url" => "http://tumblr.com/share?url=[URL]&title=[TITLE]", "popup" => true ),
"Linkedin" => array("icon_name" => "linkedin", "url" => "http://www.linkedin.com/shareArticle?mini=true&url=[URL]&title=[TITLE]&source=", "popup" => true ),
//"StumbleUpon" => array("icon_name" => "stumbleupon", "url" => "http://www.stumbleupon.com/submit?url=[URL]&title=[TITLE]", "popup" => true ),
//"Evernote" => array("icon_name" => "evernote", "url" => "http://www.evernote.com/clip.action?url=[URL]&title=[TITLE]", "popup" => true ),
"Vkontakte" => array("icon_name" => "vkontakte", "url" => "http://vkontakte.ru/share.php?url=[URL]", "popup" => true ),
//"Delicious" => array("icon_name" => "delicious", "url" => "http://del.icio.us/post?url=[URL]&title=[TITLE]]&notes=", "popup" => true ),
//"Reddit" => array("icon_name" => "reddit", "url" => "http://www.reddit.com/submit?url=[URL]&title=[TITLE]", "popup" => true )
));
$title = urlencode(get_the_title( $post->ID ));
$permalink = urlencode(get_the_permalink( $post->ID ));
$image = urlencode(rt_get_attachment_image_src(get_post_thumbnail_id( $post->ID )));
$output = "";
foreach ($rt_social_share_list as $key => $value){
$value["url"] = str_replace("[URL]", $permalink, $value["url"] );
$value["url"] = str_replace("[TITLE]", $title, $value["url"] );
$value["url"] = str_replace("[MEDIA]", $image, $value["url"] );
$output .= '<li class="'.$value["icon_name"].'">';
$output .= $value["popup"] ?
'<a class="icon-'.$value["icon_name"].' " href="#" data-url="'. $value["url"] .'" title="'. $key .'" rel="nofollow">':
'<a class="icon-'.$value["icon_name"].' " href="'. $value["url"] .'" title="'. $key .'" rel="nofollow">';
$output .= '<span>'. $key .'</span>';
$output .= '</a>';
$output .= '</li>';
}
return '
<div class="social_share_holder">
<div class="share_text"><span class="icon-share">'.__("Share","rt_theme").'</span></div>
<ul class="social_media">'.$output.'</ul>
</div>';
}
}
add_shortcode('rt_social_media_share', 'rt_social_media_share');