Posiadam szablon Independent Publisher, jestem bardzo początkująca i chciałabym na stronie głównej wyświetlać teasery postów. Wiem, że w pliku index.php należy zamienić 'the_content’ na 'the_excerpt()’ ale to nie daje rezultatów. Może w innym pliku też powinnam to zmienić?
Załączam fragment oryginalnego kodu. zmieniam tylko pogrubiony fragment
<?php if ( have_posts() ) : ?>
<?php /* Start the Loop */ ?>
<?php while ( have_posts() ) : <strong>the_content()</strong>; ?>
<?php
/* 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( 'content', get_post_format() );
?>
<?php endwhile; ?>
<?php independent_publisher_content_nav( 'nav-below' ); ?>
<?php else : ?>
<?php get_template_part( 'content', 'none' ); ?>
<?php endif; ?>