WordPress
WP_Query () Loop
Zoeken…
Invoering
WP_Query om te zoeken naar berichten, pagina's en aangepaste berichttypen. Je krijgt een lijst voor specifieke berichten en pagina's of aangepaste berichttypen. Met WP_Query kunt u berichten uit de database halen op basis van uw criteria.
Haal de laatste 10 berichten op
$args = array(
'post_type'=>'post',
'posts_per_page' =>'10'
);
$latest_posts_query = new WP_Query( $args );
if($latest_posts_query->have_posts()) :
while ( $latest_posts_query-> have_posts()) : $latest_posts_query->the_post();
//Get post details here
endwhile;
endif;
Modified text is an extract of the original Stack Overflow Documentation
Licentie onder CC BY-SA 3.0
Niet aangesloten bij Stack Overflow