如何在wordpress中显示更多文字?

时间:2016-04-24 05:54:04

标签: php wordpress

我在我的内容中插入了更多标记,但我的主页中没有显示更多链接。

<?php
$queryArr = array(
    'post_type' => 'post',
    'orderby' => 'ID',
    'order' => 'DESC',
    'post_status' => 'publish',
    'posts_per_page' => 5,
    'offset' => $offset,
);
$posts = get_posts($queryArr);
foreach ($posts as $post){
     the_content('Read More');
     echo $post->post_excerpt;
     echo $post->post_content;
}
?>


the_content('Read More');
echo $post->post_excerpt;
echo $post->post_content;

这三个都没有显示更多按钮。我怎么能解决这个问题?

0 个答案:

没有答案