How do I set up just a short preview of the post on the home page in word press with the user to click on read more to read the full post? Using the latest version. Thank in advance for any help.
Just to clarify when I do a new post the whole post appears on the front page. I want maybe only the first paragraph with a link to the full post to appear. Any help would be appreciated on this. Using latest version.
use the <!--more--> tag there also a button for it located in the same row with Bold, Italics, Center, etc hope this helps!
Search for: <?php the_content(); ?> Code (markup): in your index.php Change it to: <?php the_excerpt(); ?> Code (markup): If you want to do this in single post as well then change this in single.php Hope it helps. DON.