=== Advanced Custom Fields: Font Awesome Field === 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 an Object including the 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'); } ` == Changelog == = 1.1.0 = * Added support for use in repeater fields * Added support for use in flexible content fields * Added live icon preview to field creation screen * Fixed various bugs with Select2 initialization on dynamically added fields = 1.0.0 = * Initial Release. == Upgrade Notice == = 1.1.0 = This version adds support for use in repeater fields and flexible content fields, and also fixes some small bugs.