Browse » Home » Blogging »Create Auto Read More (Excerpt) on WordPress

Create Auto Read More (Excerpt) on WordPress

[thebestsolver.com] How to create Auto Read More (Excerpt) on WordPress ?
Find code below on index.php file, in your themes

<?php the_content('(read more…'); ?>

After found, change code above with below code

<?php the_excerpt('(read more…'); ?>

Problem solved, but “Readmore” text not contain link to the post. Don’t worry, add this code to add link to the post

<a href="<?php the_permalink() ?>" rel="bookmark" title="<?php the_title_attribute(); ?>">Read More…!!!</a>

So, Complete Code is

<?php the_excerpt('(read more…'); ?><a href="<?php the_permalink() ?>" rel="bookmark" title="<?php the_title_attribute(); ?>">Read More…!!!</a>
Related Posts Plugin for WordPress, Blogger...keywords : wordpress auto-moreauto read more wordpresswordpress auto morewordpress auto read morewordpress automatic read more
Rating: 5» 99% like it» Reviewed by Best Solver on In Create Auto Read More (Excerpt) on WordPress

One Response to “Create Auto Read More (Excerpt) on WordPress”

  1. sam says:

    Thanks a lot. There’s no other blog that can teach me like yours. Simple but yet workable. Thanks.

Leave a Reply