| 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") ){
/**
* Social Media Icons Shortcode
*
* @global class $rttheme
*
* @param array $atts
* @param string $content
* @return string $output
*/
function rt_social_media( $atts=array(), $content = null ) {
global $rttheme,$rt_social_media_icons;
$social_media_output ='';
$target = "";
foreach ($rt_social_media_icons as $key => $value){
//skype
if( $value == "skype" ){
$skype_link = explode("?", get_theme_mod( RT_THEMESLUG.'_'.$value ) );
$link = is_array( $skype_link ) && ! empty( $skype_link ) ? $skype_link[0] : "";
$link .= is_array( $skype_link ) && isset( $skype_link[1] ) ? '?'.$skype_link[1] : "";
}else{
$link = esc_url( get_theme_mod( RT_THEMESLUG.'_'.$value ));
}
$followText = esc_attr(get_theme_mod( RT_THEMESLUG.'_'.$value.'_text' ));
$target = esc_attr(get_theme_mod( RT_THEMESLUG.'_'.$value.'_target' ));
$target = empty( $target ) ? "_self" : $target;
if($value=="mail"){//e-mail icon link
if(strpos($link, "@")){
$link = 'mailto:'.str_replace("mailto:", "", $link);
}else{
$link = str_replace("mailto:", "", $link);
}
}else{
$link = $link;
}
//all icons
if($link){
$social_media_output .= '<li class="'.$value.'">';
$social_media_output .= '<a class="icon-'.$value.'" target="'.$target.'" href="'. $link .'" title="'. esc_attr( $key ) .'" rel="nofollow">';
! empty( $followText )
and $social_media_output .= '<span>'. esc_attr( $followText ) .'</span>';
empty( $followText )
and $social_media_output .= '<span>'. esc_attr( $key ) .'</span>';
$social_media_output .= '</a>';
$social_media_output .= '</li>';
}
}
if($social_media_output){
return '<ul class="social_media">'.$social_media_output.'</ul>';
}
}
}
add_shortcode('rt_social_media_icons', 'rt_social_media');