Ergänze den Code in der page.php um die farblich markierte Zeile. Das sollte eigentlich funktionieren:
PHP
<div class="post_meta" id="post-<?php the_ID(); ?>">
<span class="date"><?php the_time('d. F Y') ?></span>
<h1><a href="<?php the_permalink(); ?>" title="<?php the_title(); ?>"><?php the_title(); ?></a></h1>
<div class="div_line">
<?php the_author_posts_link(); ?> in <a href="<?php echo get_settings('home'); ?>"><?php bloginfo('name'); ?></a><?php edit_post_link('Edit', '| ', ''); ?>
</div>
<div class="post_content">
<?php the_content("<br />" . "Weiterlesen " . """ . the_title('', '', false) . """); ?>
</div>
[COLOR="Red"]<?php comments_template(); ?>[/COLOR]
</div>
Alles anzeigen