manuell musst du keinen Link setzen
<?php if(is_front_page()):?>
<?php if ($paged <= 1 ){?>
dein ganzer Loop der Startseite darunter dann
...
<p class="navigation clearfix">
<?php next_posts_link(__('« Previous Entries |','mtsmag')) ; ?>
<?php previous_posts_link(__('| Next Entries »','mtsmag')) ; ?>
</p><?php } endif;}
dann für die weitergeblätterten Seiten
<?php if($paged != 1 && $paged){
$temp = $wp_query;
$wp_query= null;
$wp_query = new WP_Query();
$wp_query->query('showposts=10&paged='.$paged);
$do_not_duplicate = $post->ID;
while ($wp_query->have_posts()) : $wp_query->the_post(); ?>
<h4><?php printf(__('%s', 'mtsmag'), get_the_category_list(', ')); ?></h4>
<div class="box01entry clearfix">
<span class="img">
<img class="alignleft" src="<?php echo catch_that_image() ?>" alt="" width="150" height="120" />
</span>
<h3><a href="<?php the_permalink() ?>" rel="bookmark" title="<?php printf(__(' %s', 'mtsmag'), the_title_attribute('echo=0')); ?>"><?php the_title(); ?></a></h3>
<p><?php print do_excerpt(get_the_excerpt(), 80); ?></p>
<?php the_tags( '<p class="readmore clearfix">' . __('Tags:', 'mtsmag') . ' ', ', ', '</p>'); ?>
<br class="clear" /></div>
<?php endwhile; ?>
Der code vom plugin
dann
<?php$wp_query = null; $wp_query = $temp;
}?>
Alles anzeigen
das habe ich jetzt einfach aus meinem Be My Guest Theme kopiert ;)
dort tut es seinen Dienst