Where to implement PHP OrderBy & Order
-
Hi,
I have a slider of sorts running on my site. It pulls posts of a certain criteria in to it. This all works no problems!
I want the posts to Order, ASC and OrderBy, ID.
Can someone help me with the snippet of code I need to insert and where exactly?
From support documentation I think it’s something like this:
$args = array( ‘order’=> ‘ASC’, ‘orderby’ => ‘id’ );
query_posts( $args );But I popped it in in a couple of different spots / variations of calling $args and haven’t had any luck.
I know it’ll be a one minute solve for someone fluent in PHP.
THANKS! (in advance)
[Large code excerpt removed by moderator per forum rules. Please use the pastebin for all large code excerpts. It works better anyway.]
The topic ‘Where to implement PHP OrderBy & Order’ is closed to new replies.