Ich habe mir ein Template installiert und habe festgestellt, das meine permalinkeinstellungen nicht stimmen. hier folgendes
<?php get_header(); ?>
<div id="topbanner_arch" class="column span-14"> <!-- start top banner -->
<div class="pagetitle">
// here you go
</div>
</div> <!-- end top banner -->
<div id="arch_content" class="column span-14"> <!-- start home_content -->
<?php if (have_posts()) : ?>
<div class="column span-3 first">
<h2 class="archive_name">Suchergebnisse</h2>
<div class="archive_meta">
<div class="archive_number">
You searched for '<?php the_search_query(); ?>'. Your search returned <?php $NumResults = $wp_query->found_posts; echo $NumResults; ?> results.
</div>
</div>
</div>
<div class="column span-8">
<?php while (have_posts()) : the_post(); ?>
<div class="archive_post_block">
<h3 class="archive_title" id="post-<?php the_ID(); ?>"><a href="<?php the_permalink(); ?>" rel="bookmark" title="Permanent Link to <?php the_title(); ?>"><?php the_title(); ?></a></h3>
<div class="archive_post_meta">By <?php the_author_posts_link(); ?> <span class="dot">⋅</span> <?php the_time('F j, Y'); ?> <span class="dot">⋅</span> <a href="<?php comments_link(); ?>"><?php comments_number('Post a comment','One comment','% comments'); ?></a></div>
<?php the_excerpt(); ?>
</div>
<?php endwhile; ?>
<div class="navigation">
<p><?php next_posts_link('« Previous') ?> <?php previous_posts_link('Next »') ?></p>
</div>
<?php else : ?>
<p>Lost? Go back to the <a href="<?php echo get_option('home'); ?>/">home page</a>.</p>
<?php endif; ?>
</div>
<?php get_sidebar(); ?>
</div> <!-- start home_content -->
wie setze ich die richtigen permalinks und pflege sie ein ?
<?php get_footer(); ?>