<?php get_header(); ?>
<?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
    <h1><?php the_title(); ?></h1>
    <?php the_content(); ?>
<?php endwhile; endif; ?>
<?php get_footer(); ?>        
  
  
  
  <?foreach( $posts as $post ) : ?>
    <div class="news-prev seperator">
        <h1> 
            <a href="http://site.ru/news/<?= $post->post_name ?>" target="_blank">
                <?= $post->post_title ?>
            </a>
        </h1>
        <p><?php echo strip_tags($post->post_content, '<a><b><strong><i><em><br /><br><br/><li><ol><ul><table><tr><th><td>'); ?></p> 
        <p class="news-h-date"><?= $post->post_date ?></p>
    </div>   
<?endforeach?>        
  
  
  
  
  
  
  
  
  
  
Только нужно будет в коде шорткодов обрабатывать контент функцией do_shortcode, чтобы вложенные шорткоды тоже работали.