在我自己的页面中显示阅读更多链接

时间:2016-01-11 02:39:27

标签: wordpress

在循环中,我可以使用函数the_content()来显示带有“read more”链接的帖子内容,但我设计了自己的页面,我没有使用loop.i使用函数get_posts()来得到帖子。那么还有其他方法可以通过“阅读更多”链接显示帖子内容吗?

2 个答案:

答案 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>';
    }
 ?>