Skip to content

Instantly share code, notes, and snippets.

@LinzardMac
Created January 29, 2013 01:47
Show Gist options
  • Save LinzardMac/4660972 to your computer and use it in GitHub Desktop.
Save LinzardMac/4660972 to your computer and use it in GitHub Desktop.
function order_featured( $query ) {
if ( ! is_admin() && $query->is_main_query() ) {
$query->set(
'orderby' => 'meta_value_num ',
'order' => 'ASC', );
}
}
add_action( 'pre_get_posts', 'order_featured' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment