<?php get_header(); ?>
<?php $layout = get_option('dancefloor_theme_options_layout'); $theme_layout = $layout['design']; if (!$theme_layout) $theme_layout = "left";?>
<div class="container-<?php echo $theme_layout ?>">
<div class="contents-<?php echo $theme_layout ?>" style="padding-top:16px;">
<div class="post-wrapper">
<?php if ( have_posts() ) while ( have_posts() ) : the_post(); ?>
<h2 class="title"><a href="<?php the_permalink() ?>"><?php the_title();?></a></h2>
<div class="post-container">
<h4 class="post-date"><?php the_time('M'); ?><span><?php the_time('j'); ?></span></h4>
<div class="post-data">
<?php
$video_source = get_post_meta($post->ID, 'video_meta_box_source', true);
$video_id = get_post_meta($post->ID, 'video_meta_box_videoid', true);
if(($video_source == "vimeo") && !empty($video_id)){
?>
<iframe src="http://player.vimeo.com/video/<?php echo $video_id; ?>?title=0&portrait=0&color=e275c7" width="554" height="300" frameborder="0" webkitAllowFullScreen allowFullScreen></iframe>
<?php } elseif(( $video_source == "youtube") && !empty($video_id)){ ?>
<iframe width="554" height="300" src="http://www.youtube.com/embed/<?php echo $video_id; ?>" frameborder="0" allowfullscreen></iframe>
<?php }
if(has_post_thumbnail()) {
$image_id = get_post_thumbnail_id();
$image_url = wp_get_attachment_url($image_id);
?>
<div class="featured-pic-wrapper">
<?php the_post_thumbnail('single');?>
</div>
<?php
}
?>
<?php the_content();?>
<div class="post-tags">
<p><?php the_tags('Posted in: ', ', ', ' '); ?></p>
</div>
<?php endwhile; ?>
<div class="comments-wrapper">
<div class="comments-head">
<h4><?php comments_number('No Comments', 'One Comment', '% Comments' );?>:</h4>
<p><a href="#comment"><?php _e('Add a Comment','language');?></a></p>
</div>
<?php comments_template(); ?>
</div><!--comments-wrapper closed -->
</div>
</div>
</div><!-- post wrapper closed -->
</div><!-- content closed -->
<?php get_sidebar(); ?>
</div><!-- container closed -->
<?php get_footer(); ?>
Neste código, como tiro as imagens em destaque algém dá uma ajudinha!?