Skip to content

Instantly share code, notes, and snippets.

@luisfelipe-dev
Created February 16, 2017 17:08
Show Gist options
  • Select an option

  • Save luisfelipe-dev/20fc5fe7b42d8ec23735e2e42ed1e71d to your computer and use it in GitHub Desktop.

Select an option

Save luisfelipe-dev/20fc5fe7b42d8ec23735e2e42ed1e71d to your computer and use it in GitHub Desktop.
Puxa os post's por ordem alfabética.
<?php
$args = array (
'post_type' => 'eventos', // ou post_type => 'post'
'orderby'=> 'title',
'order' => 'ASC',
'posts_per_page' => '50'
);
$the_query = new WP_Query ( $args );
?>
<?php if ( have_posts() ) : while ( $the_query->have_posts() ) : $the_query->the_post(); ?>
<?php endwhile; ?>
<?php endif; ?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment