$item ) {
if( isset( $options[ $key ] ) && '' != $options[ $key ] ) {
$value = $options[ $key ];
if ( 'email_link' == $key ) {
$output .= ''. __( 'Email', 'automobile') . ' ';
}
else if ( 'skype_link' == $key ) {
$output .= ''. esc_attr( $item['label'] ). ' ';
}
else if ( 'phone_link' == $key || 'handset_link' == $key ) {
$output .= ''. esc_attr( $item['label'] ) . ' ';
}
else {
$output .= ''. esc_attr( $item['label'] ) .' ';
}
}
}
//Pre defined Social Icons Link End
//
set_transient( 'automobile_social_icons', $output, 86940 );
}
return $output;
} // automobile_get_social_icons
endif;