Ricerca…


introduzione

WP_Query per richiedere post, pagine e tipi di post personalizzati. Otterrai un elenco per post e pagine specifiche o tipi di post personalizzati. WP_Query ti consente di estrarre messaggi dal database in base ai tuoi criteri.

Recupera gli ultimi 10 post

$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
Autorizzato sotto CC BY-SA 3.0
Non affiliato con Stack Overflow