Simple Category Icons Plugin WordPress, Download, Install

Simple Category Icons Plugin WordPress

A simple way to add icons to your categories and other taxonomies.

Simple Category Icons Download Now

Download Now

(If the link does not work)↓

Originals Link WordPress.org

https://wordpress.org/plugins/simple-category-icons/

How to Install Simple Category Icons Plugin, Manually

Upload files to your plugin directory or use WordPress built-it features. Activate plugin.

Simple Category Icons features functions you can use in your themes to output icons where you need them. SCI defaults to retrieving icons set on the category but you can use other taxonomies as well.

Theme codes

Example:
if (function_exists('the_icon')) { the_icon('size=small'); } ?>

the_icon($args, $term_type = ‘category’,$id = null, $use_term_id = null):

You can use different arguments either in a string or array:
the_icon('size=small&class=your_class');

or

the_icon(array('size' => 'small',                   'class' => 'your_class'));

Other arguments accepted are taxonomy type ( i.e category,post_tag ) for getting icons from other taxonomies and
id for using a querying a different post_id. You can even give a term id ($use_term_id) and get the icons set for that specific term.
This will ignore

Will use the tag taxonomy:
the_icon('size=small&class=your_class','post_tag');

Args currently accepts size (small,medium or large) and class ( custom CSS class ).

$url = get_the_icon($args, $term_type = 'category',$id = null, $use_term_id = null)
              

If you want more control over your icon you can use this function. $args accepts size (small, medium, large)
and returnFull (true, false). If set to true the function returns an Array with the term object and the URL of the found icon.
If set to false the function will only return the URL to the image.

Filters

If you need even more control over the_icon these two filters are for you:

‘sci_icon_title’ : Filters ‘title’ tag on the image. Parameters given are title and term_id
‘sci_print_icon’ : Filters the full image tag before outputting. Parameters are image tag and term_id

By default SCI gets the icon of the lowest category in the structure.

I.e. with a structure like : ( parent term -> sub-parent term -> term ) SCI will take the icon set to term and will display nothing if there is no icon on this term. You can change this behavior by applying the ‘sci_category_decision’ filter. Parameters are a term object (the ‘decision’) which is about the be used and an Array of all term Objects used in this decision. Return value is a term Object. You can return any term object here.

Video

Screenshots

Simple Category Icons Plugin WordPress

Simple Category Icons Plugin WordPress

Plugin Not Working?

If any errors or problems with the plug-in then write comments.

Add a Comment

Your email address will not be published. Required fields are marked *