1

我有一组页面 ID,我需要使用它们来创建一个简单的下一页/上一页菜单。

您可以在下面看到我到目前为止汇总的内容。

我意识到我什至离这里都不近...

    <?php
        $pagelist = array(0,1358,226,1394,1402,1468,0);

        $prevID = prev($pagelist);
        $nextID = next($pagelist);
    ?>

    <div class="navigation">
        <?php if ($prevID != 0) { ?>
        <div class="alignleft">
            <a href="<?php echo get_permalink($prevID); ?>" title="<?php echo get_the_title($prevID); ?>">Previous</a>
        </div>
        <?php } ?>
        <?php if ($nextID != 0) { ?>
        <div class="alignright">
            <a href="<?php echo get_permalink($nextID); ?>" title="<?php echo get_the_title($nextID); ?>">Next</a>
        </div>
        <?php } ?>
    </div><!-- .navigation -->

我想我需要在使用此功能的某个时候使用当前页面 ID

<?php the_ID(); ?>

有人可以帮我指出正确的方向吗?

4

1 回答 1

3

assuming that your URL contain id parameter :

<?php
        $pagelist = array(0,1358,226,1394,1402,1468,0);

        $currentIndex = array_search($_GET['id'], $pagelist); // $_GET['id'] may be replace by your the_ID() function

        $prevID = $currentIndex - 1 < 0 ? $pagelist[0] : $pagelist[$currentIndex - 1];
        $nextID = $currentIndex + 1 > count($pagelist)-1 ? $pagelist[count($pagelist)-1] : $pagelist[$currentIndex + 1];
    ?>

    <div class="navigation">
        <?php if ($prevID != 0) { ?>
        <div class="alignleft">
            <a href="<?php echo get_permalink($prevID); ?>" title="<?php echo get_the_title($prevID); ?>">Previous</a>
        </div>
        <?php } ?>
        <?php if ($nextID != 0) { ?>
        <div class="alignright">
            <a href="<?php echo get_permalink($nextID); ?>" title="<?php echo get_the_title($nextID); ?>">Next</a>
        </div>
        <?php } ?>
    </div><!-- .navigation -->

Hope this solution may help you

于 2012-10-19T09:37:53.090 回答