在循环中,我可以使用函数the_content()来显示带有“read more”链接的帖子内容,但我设计了自己的页面,我没有使用loop.i使用函数get_posts()来得到帖子。那么还有其他方法可以通过“阅读更多”链接显示帖子内容吗?
答案 0 :(得分:0)
您可以使用全局$ more变量来启用'阅读更多链接
<?php
$posts = get_posts($args);
foreach ($posts as $post) {
global $more;
$more =0;
the_content();
}
?>
答案 1 :(得分:0)
可以创建自己的简单阅读更多链接并使用echo get_the_content()
代替the_content()
<?php
$posts = get_posts($args);
foreach ($posts as $post) {
global $more;
$more =0;
echo get_the_content();
echo '<a class="moretag" href="'. get_the_permalink($post->ID) . '"> Read More</a>';
}
?>