Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

faw

faw

// Add Shortcode
function faw_shortcode( $atts ) {

	// Attributes
	$atts = shortcode_atts(
		array(
			'type' => '',
			'icon' => '',
			'size' => '',
		),
		$atts
	);

	return <i class="' . $atts['type'] . ' ' . $atts['icon'] fa-  . '$atts['size'] "></i>

}
add_shortcode( 'faw', 'faw_shortcode' );