The plugin integrates the version of Font Awesome Icons, allowing you to choose from hundreds of icons to assign to your taxonomy terms..
Simply navigate to the taxonomy screen in WordPress admin ( e.g.
When you select new icon, preview of that icon will appear to the side of the dropdown..
ID of the taxonomy term for which to output the associated icon.
If no term id is specified, the plugin will attempt to determine the current taxonomy term. class.
Plane icon, both of the following methods will output the same thing.
To add your own icons to Taxonomy Icons dropdown selector, you'll need to 1 ) Add your icons to the list with the filter, and 2 ) Enqueue you custom icon font CSS. 1.
Use the filter to add your custom icons as follows function prefix add tax icons { $icons = array return $icons }.
Just make sure you return array with the icon names as keys, and CSS classes as values. 2.
Use the wp enqueue scripts and admin enqueue scripts hooks to enqueue your custom icon font in both the front-end and back-end.
Read more