Il Corrispondente ‘primary’, ‘container’ => false, ‘items_wrap’ => ‘%3$s’, ‘walker’ => new Walker_Nav_Menu())); ?>

1)); if($query->have_posts()): while($query->have_posts()): $query->the_post(); ?>

<div class="featured-small">
  <?php
    $query = new WP_Query(array('posts_per_page' => 2, 'offset' => 1));
    if($query->have_posts()): while($query->have_posts()): $query->the_post();
  ?>
    <div class="featured-item">
      <a href="<?php the_permalink(); ?>">
        <?php the_post_thumbnail('medium'); ?>
        <div class="caption">
          <time><?php echo get_the_date('H:i, d.m.Y'); ?></time>
          <div><?php the_title(); ?></div>
        </div>
      </a>
    </div>
  <?php endwhile; endif; wp_reset_postdata(); ?>
</div>

<aside class="sidebar">
  <div class="ultima-ora">
    <h2>Ultima Ora</h2>
    <ul>
      <?php
        $query = new WP_Query(array('posts_per_page' => 3, 'category_name' => 'breaking-news'));
        if($query->have_posts()): while($query->have_posts()): $query->the_post();
      ?>
        <li><time><?php echo get_the_time('H:i'); ?></time><?php the_title(); ?></li>
      <?php endwhile; endif; wp_reset_postdata(); ?>
    </ul>
  </div>
</aside>