I should have read the article on using multiple loops. Doing so, I've made some progress.
Using rewind_posts() I was able to display more than one loop. But, being that it's a page and not a post, I can't get it to pull in a post. I tried using this bit of code from the default theme:
<?php
//for categories 1,3,16 show 1 post
$cat_args=array(
'include' => '1,3,16',
'orderby' => 'name',
'order' => 'ASC'
);
$categories=get_categories($cat_args);
foreach($categories as $category) {
$args=array(
'showposts' => 1,
'category__in' => array($category->term_id),
'caller_get_posts'=>1
);
$posts=get_posts($args);
if ($posts) {
echo '<p>Category: <a href="' . get_category_link( $category->term_id ) . '" title="' . sprintf( __( "View all posts in %s" ), $category->name ) . '" ' . '>' . $category->name.'</a> </p> ';
foreach($posts as $post) {
setup_postdata($post); ?>
<p><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>"><?php the_title(); ?></a></p>
<?php
} // foreach($posts
} // if ($posts
} // foreach($categories
?>
But, this isn't loop dependent and instead, breaks the whole thing giving me this error message:
Parse error: syntax error, unexpected $end in /home/bacclead/public_html/wp-content/themes/BACCLeadership/template-uppage.php on line 89
I'm betting that the solution is in that bit of code from the default theme. But my PHP skills aren't good enough to know how to get it to work independently for each separate loop.