Hallo,
ich habe mir gerade ein neues Theme installiert: "Elegant" (Demo). Dieses hat leider das More Tag in Index.php fest eingebaut. Wie kann ich das More-Tag aus der Index.php entfernen, so das alle Posts in Gänze zu sehen sind?
:confused:
Leider bekomme ich dies nicht alleine hin, deshalb hier der Ausschnitt aus der Index.php mit dem "more..." tag:
PHP
<h2><a href="<?php the_permalink() ?>" rel="bookmark" title="Permalink: <?php the_title(); ?>"><?php the_title(); ?></a></h2>
<p class="date"><?php the_time('F j, Y') ?></p>
<?php
if ( is_home() || is_single() || is_page() AND $loopcounter == 1) {
the_content (__('(more...)'));
}
else {
the_excerpt();
}
?>
<?php if ( ! is_page() ) { ?>
Alles anzeigen