I don't know whats wrong, I just wrote my post again in the wp support forum, clicked save, got to the page where I see my psot and it says I wrote my post 4 seconds ago, but when I try to reply it says: topic closed!?
are they that quick now ;-) ?
here it is again:
I am at a loss here. I am playing around with a new site, which all of a sudden stopped using the different tempaltes like archive.php, category.php, searchresults.php, etc.
what happens is that only the home.php seems to be used. if you click on a post you get the same view as if you click on a category and the same view as if you click on a page.
check it out here: http://www.rondul.eu/
If I switch back to the default template, everything is fine, so it is definitely a template problem.
Here is the beginning of my index.php, looks all good to me:
<?php get_header(); ?>
<div id="content">
<div id="contentmiddle">
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<div class="contentdate">
<h3><?php the_time('M'); ?></h3>
<h4><?php the_time('j'); ?></h4>
</div>
<div class="contenttitle">
<h1><a href="<?php the_permalink() ?>" rel="bookmark"><?php if(function_exists('ImageHeadline_add_options_page')) the_title('-image-'); else the_title(); ?></a></h1>
<p><?php the_time('F j, Y'); ?> | <?php comments_popup_link('Leave a Comment', '1 Comment', '% Comments'); ?></p>
</div>
<div class="post-content">
<?php the_content(__('Read more'));?>
</div>
I'd appreciate any hint or any help that you can give out there, I have no clue whats happening here...