• HI, First thanks for your job.

    I am trying to have a article page (after having settled the article page) with the excerpts on it like any category page.

    I have modified the content.php as you have explained in an other topic, but the article page still show only the first lines with read-more link. There is no title and no entry-meta shown on the page.

    I didn’t succeed in finding the template where I can modify this.

    Hope you can help me,

    thanks

    • This topic was modified 6 years, 12 months ago by bb14.
Viewing 1 replies (of 1 total)
  • Theme Author Afterimage Designs

    (@afterimagedesigns)

    Hi bb14,

    Thank you for using WP Bootstrap Starter Theme, You can change the content to excerpt in the category page by editing the content.php and change this

    if ( is_single() ) :
    			the_content();
            else :
                the_content( __( 'Continue reading <span class="meta-nav">&rarr;</span>', 'wp-bootstrap-starter' ) );
            endif;

    with this

    if ( is_single() ) :
    			the_content();
            else :
                the_excerpt();
            endif;

    here is the final output – https://www.screencast.com/t/tQc4uzG6QB

Viewing 1 replies (of 1 total)
  • The topic ‘Excerpt in category page’ is closed to new replies.