Shortcode icon
// Add Shortcode function zstf_icon_shortcode( $atts ) { // Attributes $atts = shortcode_atts( array( 'type' => 'normal', 'name' => 'camera', ), $atts, 'icon' ); $code = '<span class="uk-icon"></span>'; return $code; } add_shortcode( 'icon', 'zstf_icon_shortcode' );