Hallöchen,
nachdem ich mit einem anderen Thema nicht zurecht kam habe ich ein anderes Instaliert. Soweit klappt auch alles nur ich wurde mal gerne manche Kategorien von der Main Page entfernen. Ich poste mal den code der index.php und hoffe das mit jemand helfen kann ...
PHP
<?php get_header(); ?>
<div id="content"><a name="content"></a>
<?php include (TEMPLATEPATH . '/featured.php'); ?>
<?php include (TEMPLATEPATH . '/glide.php'); ?>
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<div class="post" id="post-<?php the_ID(); ?>">
<span class="categ"><?php the_category(', '); ?> </span>
<div class="centry">
<?php $homethumb = get_post_meta($post->ID,'homethumb', true); ?>
<img src="<?php bloginfo('url'); ?>/wp-content/uploads/<? echo strtolower($homethumb); ?>.jpg" width="100" height="80" >
<h2><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title(); ?>"><?php the_title(); ?></a></h2>
<?php the_excerpt(); ?>
</div>
<div class="postinfo">
<div class="postmore"> <a href="<?php the_permalink() ?>">Weiterlesen</div>
</div>
</div>
<?php endwhile; ?>
<div id="navigation">
<div class="alignleft"><?php next_posts_link('« Ältere Beiträge') ?></div>
<div class="alignright"><?php previous_posts_link('Neue Einträge »') ?></div>
</div>
<?php else : ?>
<h1>Not Found</h1>
<div class="cover">
<div class="entry">
<p>Sorry, no post matched your criteria. Try a different search?</p>
</div>
</div>
<?php endif; ?>
</div>
<?php get_sidebar(); ?>
<?php get_footer(); ?>
Alles anzeigen
Ich danke euch schon im vorraus !!!