Reversing a Wordpress themes date order -
so still haven't been able figure out: reversing order of dates on top , thumbnails of page: http://www.kimsquaglia.com/work/ should behave home page.
here code: http://pastie.org/4212608
thanks in advance everyone.
you need modify get_terms(). get_terms()
can accept order argument.
on line 48, try replacing
$skills = get_terms('skill');
with
$skills = get_terms('skill', 'order=desc');
Comments
Post a Comment