Hello, im working on some sort of "category" menu in the header.
This menu, it's an ul list, and i use
get_categories('include_last_update_time=1
&orderby=ID
&hierarchical=0
&include=4,158,151,28,12');
I also want that this menu show a little icon if the category was updated (from one week ago to today)
thats why i need the "include_last_update_time" but it doesn't exist (i also checked the whole array response)
well if this option doesn't exists i need to do a custom query to also know the date of the last post (from each category).
How can i do what i need?