第1992天:wordpress文章页加入“上一篇下一篇”,屌丝团记忆(112) 加班 马拉松去不成

wordpress文章页加入“上一篇下一篇”

编辑 -> 外观 -> single.php

在需要的位置加入以下代码:

<div class="next-prev-article">
    <?php
        $categories = get_the_category();
        $categoryIDS = array();
        foreach ($categories as $category) {
            array_push($categoryIDS, $category->term_id);
        }
        $categoryIDS = implode(",", $categoryIDS);

        if (get_previous_post($categoryIDS)) {
            previous_post_link('<p>上一篇:%link</p>','%title',true);
        }
        else{
            echo '<p class="no-article">上一篇:已是最后文章</p>';
        }

        if (get_next_post($categoryIDS)) {
            next_post_link('<p>下一篇:%link</p>','%title',true);
        }
        else {
            echo '<p class="no-article">下一篇:已是最新文章</p>';
        } 
    ?>
</div>

屌丝团记忆(112) 加班 马拉松去不成

明天杭州马拉松。江宝建那一队前几天就从福州到杭州了,南靖小弟这一队今天下午到杭州。

本来打算今晚去和他们聚聚,明天去市民中心马拉松终点拍照。但是因为公司项目周一要发布,今天的运动日暂停,晚上加班,明天也加班。

遗憾。

RSS

上一篇:

下一篇:

发表评论

电子邮件地址不会被公开。 必填项已用*标注