Hello,
I'd like to display the contents of the first posts in a given category (videos) and list the rest of the posts in the category after it.
Here is the code block:
<?php $showpost = new WP_query(); $showpost->query('showposts='.$carpet['featured_video_posts_X'].'&cat='.$carpet['videos_id']); $i; ?>
<?php if ($showpost->have_posts()) : ?>
<div class="box_type_a">
<?php while ($showpost->have_posts()) : $showpost->the_post(); $myPosts .= $post->ID . ","; ?>
<div class="main_vid_item">
<div class="<?=($i%2)?"pic":"pic-alt";$i++;?>"><?php show_photo($carpet['big_thumb_w'],$carpet['big_thumb_h']); ?></div>
<h3><a href="<?php the_permalink(); ?>" title="<?php the_title(); ?>"><?php the_title(); ?></a></h3>
<p><a href="<?php the_permalink(); ?>" title="<?php the_title(); ?>"><?php print do_excerpt(get_the_excerpt(), $carpet['snippet_level2']); ?></a></p>
<ul class="etc">
<li class="readit"><a href="<?php the_permalink(); ?>">Watch it</a></li>
</ul><div class="clear"></div>
</div>
<?php endwhile; ?>
</div>
<?php endif; ?>
How can I modify this theme to display the video in the right column then list the rest of the posts underneath?