No one can help me? This is my loop
<div class="travel_box_container">
<h3>Viaggi e crociere in primo piano</h3>
<?php
$args = array( 'numberposts' => 6, 'category' => '7', 'order'=> 'ASC', 'orderby' => 'title' );
$postslist = get_posts( $args );
foreach ($postslist as $post) : setup_postdata($post);
?>
<div class="travel_box">
<a href="<?php the_permalink() ?>" title="Vedi <?php the_title_attribute(); ?>">
<? the_post_thumbnail() ?></a>
<h4><?php the_title(); ?></h4>
<?php the_excerpt(); ?>
<div class="details"><p><a href="<?php the_permalink() ?>" title="Vedi e prenota <?php the_title_attribute(); ?>">Vedi e prenota</a></p></div>
<div class="travel_box_angle">
<p>A partire da <span><?php echo get_post_meta($post->ID, 'prezzo_base', true) ?></span></p>
</div><!--chiusura di un angolo prezzo -->
</div><!-- chiusura di un travel box -->
<?php endforeach; ?>
<?php wp_reset_query();?>
<div style="clear:both;"></div>
</div><!-- chiusura di travel box container con i viaggi in primo piano-->
<div style="clear:both;"></div>
<div class="bottom_wrapper">
<h3>Viaggi e crociere in offerta</h3>
<div class="bottom_wrapper_scroller">
<?php
$args2 = array( 'numberposts' => 4, 'category' => '5', 'order'=> 'ASC', 'orderby' => 'title' );
$postslist2 = get_posts( $args2 );
foreach ($postslist2 as $post2) : setup_postdata($post2);
?>
<div class="bottom_box">
<a href="<?php the_permalink() ?>" title="Vedi <?php the_title_attribute(); ?>">
<? the_post_thumbnail(); ?></a>
<h4><?php the_title(); ?></h4>
<?php the_excerpt(); ?>
<div class="details"><p><a href="<?php the_permalink(); ?>" title="Vedi e prenota <?php the_title_attribute(); ?>">Vedi e prenota</a></p></div>
<div class="travel_box_angle">
<p>A partire da <span><?php echo get_post_meta($post->ID, 'prezzo_base', true) ?></span></p>
</div><!--chiusura di un angolo prezzo -->
</div><!-- chiusura di un bottom box -->
<?php endforeach; ?>
<?php wp_reset_query();?>
<div class="bottom_box_clear"></div>
</div><!-- chiusura di bottom wrapper scroller -->
</div><!-- chiusura del bottom wrapper con i viaggi in offerta-->
<div class="bottom_wrapper">
<h3>Viaggi e crociere <span class="red_title">last minute</span></h3>
<div class="bottom_wrapper_scroller">
<?php
$args3 = array( 'numberposts' => 4, 'category' => '6', 'order'=> 'ASC', 'orderby' => 'title' );
$postslist3 = get_posts( $args3 );
foreach ($postslist3 as $post3) : setup_postdata($post3);
?>
<div class="bottom_box">
<a href="<?php the_permalink() ?>" title="Vedi <?php the_title_attribute(); ?>">
<? the_post_thumbnail() ?></a>
<h4><?php the_title(); ?></h4>
<?php the_excerpt(); ?>
<div class="details"><p><a href="<?php the_permalink(); ?>" title="Vedi e prenota <?php the_title_attribute(); ?>">Vedi e prenota</a></p></div>
<div class="travel_box_angle">
<p>A partire da <span><?php echo get_post_meta($post->ID, 'prezzo_base', true) ?></span></p>
</div><!--chiusura di un angolo prezzo -->
</div><!-- chiusura di un bottom box -->
<?php endforeach; ?>
<?php wp_reset_query();?>
<div class="bottom_box_clear"></div>
</div><!-- chiusura di bottom wrapper scroller -->
</div><!-- chiusura del secondo bottom wrapper con i last minute-->
Seems there’s nothing wrong, but it dont’t work.