Hallo,
ich habe ein auf underscores basierendes Theme erstellt. Jetzt möchte ich, dass auf der Startseite nicht der komplette Beitragstext, sondern nur der Auszug angezeigt wird.
Der loop sieht normalerweise so aus:
PHP
if ( have_posts() ) :
if ( is_home() && ! is_front_page() ) : ?>
<header>
<h1 class="page-title screen-reader-text"><?php single_post_title(); ?></h1>
</header>
<?php
endif;
/* Start the Loop */
while ( have_posts() ) : the_post();
/*
* Include the Post-Format-specific template for the content.
* If you want to override this in a child theme, then include a file
* called content-___.php (where ___ is the Post Format name) and that will be used instead.
*/
get_template_part( 'template-parts/content', get_post_format() );
endwhile;
the_posts_navigation();
else :
get_template_part( 'template-parts/content', 'none' );
endif; ?>
Alles anzeigen
Jetzt habe ich versucht
durch
zu ersetzen. Dann wird aber immer nur der Titel des ersten Beitrages, in einer Endlosschleife ausgegeben.
Könnt ihr mir sagen, was ich falsch mache?