简体   繁体   中英

Wordpress full post showing

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/

Install the automatic read more generator . It will hide everything after the first image or first paragraph until the link is clicked.

Use the_excerpt() instead of the_content()

<?php
    if ( have_posts() ) while ( have_posts() ) : the_post();
         the_excerpt();
     endwhile;
?>

Read More

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM