3200creative
4/13/2015 - 12:44 AM

Fontawesome Shortcode For WordPress

Fontawesome Shortcode For WordPress

// Icon Shortcode Using Fontawesome by 3200creative
// to use this shortcode use the following markup [fa-icon id="option-id" class="custom-class" type="arrow" size="24" color="#ff9900"]

function icon_func( $atts ) {
    $a = shortcode_atts( array(
        'type' => 'Add Icon Type',
        //ID is optional
        'id' => '',
        'size' => 'Add Size',
        'color' => 'Add Color',
				'class' => 'Add Class',
    ), $atts );

    return '<span id="'."{$a['id']}".'" style="font-size:'."{$a['size']}".'px; color:'."{$a['color']}".';"class="fa fa-'."{$a['type']}".' '."{$a['class']}".'"></span>';
}
add_shortcode( 'fa-icon', 'icon_func' );