Skip to content

Instantly share code, notes, and snippets.

@williamsba
Created January 24, 2013 20:40
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save williamsba/4627486 to your computer and use it in GitHub Desktop.
Save williamsba/4627486 to your computer and use it in GitHub Desktop.
$params = array (
'meta_key' => 'review_image_value',
'orderby' => 'meta_value_num',
'order' => 'DESC'
);
$query = new WP_Query( $params );
while ( $query->have_posts() ) :
$query->the_post();
echo '<li>' . get_the_title() . '</li>';
endwhile;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment