Thread Starter
cocko
(@cocko)
I have created an archive.php file, so it’s working now, many thanks 🙂
Thread Starter
cocko
(@cocko)
hmm, should. My Archive Template:
<?php
/*
Template Name: archives
*/
?>
<?php get_header(); ?>
<div id='content'>
<?php if (have_posts()) : ?>
<?php while (have_posts()) : the_post(); ?>
<h2>Archive – All Entries</h2>
<?php the_content(); ?>
<?php wp_get_archives('show_post_count=1'); ?>
<?php endwhile; ?>
<?php endif; ?>
<?php comments_template(); ?>
</div>
<?php get_footer(); ?>
piece of my index.php file:
<div id='content'>
<?php $posts = query_posts('cat=-4'); ?>
<?php if (have_posts()) : ?>
<?php while (have_posts()) : the_post(); ?>
<h2><?php the_title(); ?></h2>
...
Thread Starter
cocko
(@cocko)
Hmpf, seems it is the X-Valid plugin, so I have to disable it. Now I’m searching a plugin:
Plugin to validate comments
Thread Starter
cocko
(@cocko)
Hm, I can’t find such a list