Das ist etwas komplizierter:
Du brauchst eine statische Seite: klar :-)
Dort kommt folgender Haupt-Code rein (stammt von mir - also unbedingt anpassen!) - hab alle für Dich unwichtigen Styles rausgenommen:
PHP
<?php
/*
Template Name: galerieindex
*/
?>
<?php get_header(); ?>
<div id="content" class="narrowcolumn">
<?php query_posts('cat=21'); ?>
<?php if (have_posts()) : ?>
<?php while (have_posts()) : the_post(); ?>
<div class="foto" id="post-<?php the_ID(); ?>">
<?php the_permalink() ?>" rel="bookmark" title="Permanent Link zu: <?php the_title(); ?>">
<div class="entry">
<?php if(function_exists('iinclude_page')) {
iinclude_page( $id ,'displayStyle=DT_TEASER_MORE&more=mehr Infos...');
}
?> <!-- BITTE ERKLÄRUNG LESEN!!! -->
</div>
<div class="postmetadata">
<hr />
<img src="<?php bloginfo('template_url'); ?>/images/cat.gif" alt="grafik"/>
<small>[ Rubrik ] <?php the_category(', ') ?> vom </small>
<small><?php the_time('d.m.Y') ?></small>
</div>
</div>
<?php endwhile; ?>
<?php else : ?>
<h2 class="center">Nichts gefunden</h2>
<p class="center">Sorry, aber du suchst gerade nach etwas, was hier nicht ist.</p>
<?php include (TEMPLATEPATH . "/searchform.php"); ?>
<?php endif; ?>
</div>
<?php get_sidebar(); ?>
<?php get_footer(); ?>
Alles anzeigen
Erklärung: In der Statischen Seite werden jetzt alle Blogeinträge aus Cat 21 (änderbar) angezeigt. Der More-Link funktioniert dann normalerweise nicht, aber über die ausgewiesene Funktion im Code und mit dem plugin Wordpress plugin: Improved Include Page | Vito Tardia klappt das trotzdem!
LG, Doc