Skip to content

Instantly share code, notes, and snippets.

@gspice
Last active March 20, 2016 19:46
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save gspice/09986238930e92569849 to your computer and use it in GitHub Desktop.
Save gspice/09986238930e92569849 to your computer and use it in GitHub Desktop.
This creates a shortcode containing the HTML representation of a Font Awesome heart icon.
//Creates a shortcode that displays a Font Awesome heart icon
add_shortcode('fa-heart', 'gsc_shortcode_faheart');
function gsc_shortcode_faheart( $attr ){
return '<i class="fa fa-heart"></i>';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment