我在我的内容中插入了更多标记,但我的主页中没有显示更多链接。
<?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;
这三个都没有显示更多按钮。我怎么能解决这个问题?