Skip to content

Instantly share code, notes, and snippets.

@mneuhaus
Created October 15, 2014 09:13
Show Gist options
  • Select an option

  • Save mneuhaus/21a8396235b6f9e437d8 to your computer and use it in GitHub Desktop.

Select an option

Save mneuhaus/21a8396235b6f9e437d8 to your computer and use it in GitHub Desktop.
teaser subpages in wordpress
<?php
$loop = new WP_Query( array( 'post_type' => 'page', 'orderby' => 'title', 'order'=>'ASC','posts_per_page' => 99, 'post_parent' => get_the_ID()) );
while ( $loop->have_posts() ) : $loop->the_post();
...
endwhile;
?>
@plewick
Copy link
Copy Markdown

plewick commented Aug 2, 2016

Thanks for saving me 20sec :) Wonder if it wouldn't be better to have there
'posts_per_page' => -1

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment