Hi, all.
I just installed MU, and have one blog running on it fine, but then the 2nd blog went up, and this code in the themes header.php no longer worked as intended on the 2nd blog (still works in the 1st blog:
<?php
$featuredPosts = new WP_Query();
$featuredPosts->query('showposts=1&sticky_posts');
while ($featuredPosts->have_posts()) : $featuredPosts->the_post(); ?>
<div id="post-<?php the_ID(); ?>">
<h1><?php the_title(); ?></h1>
<div class="entry"><?php the_content('More...'); ?></div>
<?php endwhile; ?>
In the 1st blog, it's showing the latest sticky post of the blog just fine and dandy. But on the 2nd blog, it keeps ALSO showing the latest post of the blog as well (and it's NOT set to sticky). So it throws in an extra post. But not on the 1st blog, just the 2nd. Both blogs share the same theme.
What's going on? Should I use a different query? What then? Thanks in advance!