Okay I think I got the proper tripe loop code which goes like this ( I have to edit in what categories I want to draw from. But I am stymied as to where I should add this on my index.php page. Adding it to the top does nothing to my site.
Here is my index code:
<?php get_header(); ?>
<?php
$options = get_option("widget_sideFeature");
$posts = get_option('fms_number_posts');
$paged = (get_query_var('paged')) ? get_query_var('paged') : 1;
if (is_active_widget('widget_myFeature')) {
$category = "showposts=".$posts."&cat=-".$options['category']."&paged=".$paged;
} else {
$category = "showposts=".$posts."&paged=".$paged;
}
$i = 1;
?>
<?php query_posts($category); ?>
<div id="threecol"><div id="threecol2">
<?php while (have_posts()) : the_post(); ?>
<?php if($i == 7) { $i=4; } ?>
<div class="threepost threepost<?php echo $i; $i++; ?>">
<h2><a href="<?php the_permalink() ?>"><?php the_title(); ?></a></h2>
<div class="storycontent">
<?php getImage('1'); ?>
<?php echo theme_excerpt(25); ?>
<p class="contread"><a href="<?php the_permalink(); ?>">Read More »</a></p>
</div>
</div>
<?php endwhile; ?>
</div>
</div>
<div class="navigation">
<div class="alignleft"><?php next_posts_link('« Older Entries') ?></div>
<div class="alignright"><?php previous_posts_link('Newer Entries »') ?></div>
</div>
<?php get_footer(); ?>
and here is the supposed tripple column loop
// the first loop
<?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
<?php if ( in_category('7') && is_home() ) continue; ?>
<?php if ( in_category('8') && is_home() ) continue; ?>
<?php the_title(); ?>
<?php the_content(); ?>
<?php comments_template(); ?>
<?php endwhile; ?>
<?php posts_nav_link('','','« Previous') ?><?php previous_post('« %', '', 'yes'); ?>
<?php posts_nav_link('','Next »','') ?><?php next_post('% »', '', 'yes'); ?>
<?php else : ?>
<p>Sorry..</p>
<?php endif; ?>
// the second loop
<?php query_posts('cat=7&showposts=3'); ?>
<?php $posts = get_posts('category=7&numberposts=3&offset=0');
foreach ($posts as $post) : start_wp(); ?>
<?php the_title(); ?>
<?php the_excerpt(); ?>
<?php endforeach; ?>
// the third loop
<?php query_posts('cat=8&showposts=3'); ?>
<?php $posts = get_posts('category=8&numberposts=3&offset=0');
foreach ($posts as $post) : start_wp(); ?>
<?php the_title(); ?>
<?php the_excerpt(); ?>
<?php endforeach; ?>
from this site
https://perishablepress.com/press/2006/11/22/perishable-press-triple-loop-for-wordpress/
anyone have any idea? thanks