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

Popular posts from this blog

JQuery Autocomplete without using label, value, id -

c++ - Accessing inactive union member and undefined behavior? -

JAVA - what is the difference between void and boolean methods? -