Skip to content

Instantly share code, notes, and snippets.

@webmasterninjay
Created April 13, 2015 15:55
Show Gist options
  • Save webmasterninjay/649f0e74981162904b05 to your computer and use it in GitHub Desktop.
Save webmasterninjay/649f0e74981162904b05 to your computer and use it in GitHub Desktop.
Genesis custom loop
<?php
// Genesis custom parameter loop
add_action('genesis_before_loop', 'jay_before_loop');
function jay_before_loop () {
global $query_string;
query_posts($query_string . "&order=DESC&orderby=date");
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment