Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- if ( ! function_exists( 'jas_gecko_social' ) ) {
- function jas_gecko_social() {
- $output = '';
- $socials = cs_get_option( 'social-network' );
- if ( empty( $socials ) ) return;
- $output .= '<div class="jas-socials">';
- foreach ( $socials as $social) {
- $output .= '<a class="dib br__50 tc ' . esc_attr( str_replace( 'fa fa-', '', $social['icon'] ) ) . '" href="' . esc_url( $social['link'] ) . '" target="_blank"><i class="' . esc_attr( $social['icon'] ) . '"></i></a>';
- }
- $output .= '</div>';
- return apply_filters( 'jas_gecko_social', $output );
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement