标签: php wordpress
如何在没有<?php the_content(); ?链接的情况下在非单页中显示Read More? 基本上我只需要在更多标签之前获取帖子的一部分,因为我有一个单独的“阅读更多”按钮,其中包含href="<?php the_permalink() ?>"
<?php the_content(); ?
Read More
href="<?php the_permalink() ?>"
答案 0 :(得分:3)
很可能你想要使用
the_excerpt()
或
the_content(''); //'' tells it to have no text for the link