Themesphere Support Forum » Support » Spotlight

[sticky]

How to change the posts to use <!--more--> tag instead of excerpts

(1 post)
  • Started 1 year ago by Haris
  1. The excerpts are hard coded in the theme for homepage (index.php), archives (archive.php) and search (search.php) pages for the posts. To change them to use <!--more--> tag so that you can have more control over the post content, please follow the steps below:

    Replace :

    <?php echo str_replace('[...]', '', get_the_excerpt()); ?>
    
    <a href="<?php the_permalink(); ?>" title="<?php the_title(); ?>">Keep Reading &rarr;</a>

    with:

    <?php the_content('Keep Reading &rarr;'); ?>
    Posted 1 year ago #

RSS feed for this topic

Reply

You must log in to post.