der fehler ist heute plötzlich auf Uns gehört die Welt! » Vernetzungs-Plattform zum Buch von Klaus Werner-Lobo aufgetreten, obwohl ich nichts in der index.php des themas geändert habe. wenn ich dort <?php the_content() ?> durch <?php the_excerpt() ?> ersetze, ist wieder alles normal; ich möchte aber den gesamten content anzeigen. hier die index.php, danke für eure hilfe:
PHP
<?php get_header(); ?>
<div id="content">
<?php
// Include tabs with the lead story
include(TEMPLATEPATH . '/ui.tabs.php'); ?>
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<?php if ( !in_category('95')) { ?>
<div class="post">
<h4 id="post-<?php the_ID(); ?>"><a href="<?php the_permalink() ?>" rel="bookmark" title="<?php __('Permanent Link to','branfordmagazine');?> <?php the_title(); ?>">
<?php the_title(); ?>
</a></h4>
<div class="entry">
<?php the_content() ?>
</div>
<div class="postmetadata">
<?php the_time(__('M jS, Y','branfordmagazine')); ?>
|
<?php _e('By','branfordmagazine');?>
<?php the_author_posts_link('namefl'); ?>
|
<?php _e('Category:','branfordmagazine');?>
<?php the_category(', ') ?>
<?php edit_post_link('Edit', ' | ', ''); ?>
|
<?php the_tags('Tags: ', ', ', ''); ?>
|
<?php comments_popup_link(__ ('No Comments »', 'branfordmagazine'), __ ('1 Comment »', 'branfordmagazine'), __ngettext ('% comment', '% comments', get_comments_number (),'branfordmagazine')); ?>
</div>
<hr />
<br />
</div>
<?php } ?>
<?php endwhile; else: ?>
<p><?php _e('Sorry, no posts matched your criteria.'); ?></p>
<?php endif; ?>
<div class="navigation">
<div class="alignleft">
<?php next_posts_link(__('Previous entries','branfordmagazine')) ?>
</div>
<div class="alignright">
<?php previous_posts_link(__('Next entries','branfordmagazine')) ?>
</div>
</div>
</div>
<!--END CONTENT-->
<?php get_sidebar(); ?>
<?php get_footer(); ?>
Alles anzeigen