• Resolved catxtwo

    (@catxtwo)


    Hi,

    Under Settings->Reading I have “Summary” selected for the “For each article in a feed, show” option. I’ve saved this change but when I reload my blog’s home page the entire articles are shown (verses just a summary of each one).

    screenshot

    Is there something else I need to do?

    Thanks!

Viewing 8 replies - 1 through 8 (of 8 total)
  • That setting is for RSS feeds from your site, not your site itself. What displays on your site is determined by the theme.

    Thread Starter catxtwo

    (@catxtwo)

    Thank you WPyogi

    in your theme, where you want to see only the summary, replace
    <?php the_content()
    with
    <?php the_excerpt(); ?>

    @pcfix24.com – any changes like that should be made only in a child theme – so that the changes are not lost when the theme is updated.

    http://codex.ww.wp.xz.cn/Child_Themes

    Thread Starter catxtwo

    (@catxtwo)

    Luckily, I am working in a child theme. But I’m not sure which file to modify… index.php? My index.php file doesn’t contain “the_content()” anywhere. What WP file represents my home page?

    Thanks!

    Try using this plugin to help answer that –

    https://ww.wp.xz.cn/plugins/what-the-file/

    Otherwise, what theme are you using? You’ll likely need to ask on the forum specific to your theme.

    Thread Starter catxtwo

    (@catxtwo)

    In my child theme’s content.php I added the following which does exactly what I wanted. Thanks to everyone for the help!

    <div class="post-content">
    
    		<?php the_excerpt(); ?> <h5><a href="<?php the_permalink(); ?>" title="<?php the_title(); ?>">Read More...</a></h5>
    
    		<?php wp_link_pages(); ?>
    
    </div> <!-- /post-content -->

    Awesome – great job!

Viewing 8 replies - 1 through 8 (of 8 total)

The topic ‘Settings / Reading -> Summary’ is closed to new replies.