Thanks all of you for your kind assistance.
We did it with a for loop like this:
<div id="lead_news">
<div id="lead_news_left">
<?php if ( have_posts() ) : ?>
<?php
$lead = new WP_Query( 'cat=3' );
// IT WILL ECHO POST NO. 1 HERE, ONLY
for ( $counter = 0; $counter <= 1; $counter += 1) {
$lead->the_post(); ?>
<?php get_template_part( 'content', get_post_format() );
$counter++;
}
?>
</div> <!-- #lead_news_left -->
<div id="lead_news_right">
<div id="lead"><strong>Other Lead News:</strong></div>
<ul id="lead_other">
<?php
// IT WILL ECHO POST NO. 2 to 6 HERE
for ( $counter = 1; $counter <= 6; $counter += 1) {
$lead->the_post(); ?>
<li>
<a href="<?php the_permalink(); ?>" title="<?php printf( __('Permalink to %s', 'your-theme'), the_title_attribute('echo=0') ); ?>" rel="bookmark"><?php the_title(); ?></a>
</li>
<?php } ?>
</ul> <!-- #lead_other -->
</div> <!-- #lead_news_right -->
</div> <!-- #lead_news -->
Then when my query ends, I ended it as usual with:
<?php
// Reset Post Data
wp_reset_postdata();
?>
And after everything, we ended with an <?php endif; ?>.
I agree that, It's not what I asked here, but it worked for me, and I can display posts wherever I want 'em to display. :)
It displays like:
----------------
POST 1 | POST 2
| POST 3
| POST 4
| POST 5
| POST 6
----------------
Thanks all of you again for your assistance and precious time.
Yap, CODE IS POETRY!