'; $html .= wp_kses_post( $content ); $html .= ''; return $html; } /** * wpLingua Shortcode : [wplng_switcher] * * @param array $atts * @return string */ function wplng_shortcode_switcher( $atts ) { $attributes = shortcode_atts( array( 'insert' => false, 'style' => false, 'title' => false, 'theme' => false, 'flags' => false, 'class' => false, ), $atts ); if ( ! empty( $attributes['class'] ) ) { $attributes['class'] .= ' insert-shortcode'; } else { $attributes['class'] = 'insert-shortcode'; } return wplng_get_switcher_html( $attributes ); }