Skip to content

Instantly share code, notes, and snippets.

@DWboutin
Created August 18, 2014 14:48
Show Gist options
  • Save DWboutin/9a892f6a3046a7919a03 to your computer and use it in GitHub Desktop.
Save DWboutin/9a892f6a3046a7919a03 to your computer and use it in GitHub Desktop.
Custom Order function WP_Query
<php
function orderby( $a, $b ) {
global $posts;
$apos = get_field('niveau_academique', $a->ID);
$bpos = get_field('niveau_academique', $b->ID);
return ( $apos < $bpos ) ? -1 : 1;
}
usort( $projets->posts, "orderby" );
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment