I'm using WordPress plugin icon box developed by husamrayan.
In my use case I make categories so every category contains few icons and every icon has its own title; and I can get the category in post with acf (advanced custom field) about its id, name, amount... etc.
But how could I get every icons' title belonging to the category?
For example, in the picture:
How could I get titles of icons belonging to shop_cate3
as I already get shop_cate3 info from acf by get_field('fields_name');
-------plus info-------
I use both plugins 'acf' and 'icon box'.
Here how do I setup iconbox as a taxonomy and custom field name 'shop_service', which I could define post related to one of the categories and have the category contain some icons.
Then in single.php, I retrieve custom field data by acf function:$terms = get_field('shop_service');
Then if I parse the data inside $terms it would be:
{
"term_id":31,
"name":"shop_cate_3",
"slug":"%e5%ba%97%e9%9d%a23",
"term_group":0,
"term_taxonomy_id":31,
"taxonomy":"icoonboxcategory",
"description":"",
"parent":0,
"count":4,
"filter":"raw"
}
But I cannot retrieve icons related to this category.

