=== Advanced Custom Fields: Font Awesome === Contributors: mattkeys Tags: Advanced Custom Fields, ACF, Font Awesome, FontAwesome Requires at least: 3.5 Tested up to: 3.8.1 Stable tag: trunk License: GPLv2 or later License URI: http://www.gnu.org/licenses/gpl-2.0.html Adds a new 'Font Awesome Icon' field to the popular Advanced Custom Fields plugin. == Description == Add a [Font Awesome](http://fontawesome.io/) icon field type to Advanced Custom Fields. * Optionally set a default icon * Returns Icon Element, or Icon Class, or Object include class, element, and unicode value * Optionally enqueues Font Awesome in footer = Compatibility = This add-on will work with: * version 4 and up == Installation == This add-on can be treated as both a WP plugin and a theme include. = Plugin = 1. Copy the 'acf-font-awesome' folder into your plugins folder 2. Activate the plugin via the Plugins admin page = Include = 1. Copy the 'acf-font-awesome' folder into your theme folder (can use sub folders). You can place the folder anywhere inside the 'wp-content' directory 2. Edit your functions.php file and add the code below (Make sure the path is correct to include the acf-font-awesome.php file) ` add_action('acf/register_fields', 'my_register_fields'); function my_register_fields() { include_once('acf-font-awesome/acf-font-awesome.php'); } ` == Screenshots == 1. Set a default icon, and choose how you want icon data to be returned. 2. Searchable list of all icons, including large live preview == Changelog == = 1.0.0 = * Initial Release.