Skip to content

Instantly share code, notes, and snippets.

@Aziz-Rahman
Last active August 29, 2015 14:14
Show Gist options
  • Save Aziz-Rahman/b1f7d4d5b601678d1abe to your computer and use it in GitHub Desktop.
Save Aziz-Rahman/b1f7d4d5b601678d1abe to your computer and use it in GitHub Desktop.
Simple Wp_Query Wordpress
<?php
$args = array(
'post_type' => 'post',
'post_status' => 'publish',
'meta_key' => 'tanggal_lahir', //id
'orderby' => 'meta_value',
'order' => 'DESC',
);
$wp_query = new WP_Query();
$wp_query->query( $args );
if ( $wp_query->have_posts() ) :
while( $wp_query->have_posts() ) :
$wp_query->the_post();
//Do Something ...
endwhile;
endif;
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment