[xyz-ips snippet=”RicetteSalate”]
[insert_php]
$args = array(
‘tag’ => ‘ricettedellatradizionesalato’,
‘posts_per_page’ => 200,
‘orderby’ => ‘date’,
‘order’ => ‘DESC’,
‘paged’=> $paged,
);
$query = new WP_Query($args);
// The Loop
while( $query->have_posts() ) : $query->the_post();
echo ‘
- ‘;
echo ‘‘;
echo ‘‘;
echo ‘‘;
echo ‘
‘;
endwhile;
wp_reset_postdata();
[/insert_php]