Reputation: 2553
When I am posting something on wordpress, it is showing the full post. I want to hide the full post and show some lines. So user an click on the read more link the the full post will be shown. plz any Idea or plugin .
my Site: http://mlmpublicnews.com/
Upvotes: 0
Views: 65
Reputation: 3240
Use the_excerpt() instead of the_content()
<?php
if ( have_posts() ) while ( have_posts() ) : the_post();
the_excerpt();
endwhile;
?>
Upvotes: 0
Reputation: 995
See these with some examples. May get handy..
http://codex.wordpress.org/Customizing_the_Read_More
http://www.wikihow.com/Add-Read-More-to-Wordpress
Hope it helps..
Upvotes: 0
Reputation: 13189
Install the automatic read more generator. It will hide everything after the first image or first paragraph until the link is clicked.
Upvotes: 1