WordPressテックラボ

シングルページに前後記事へのナビゲーションを追加

シングルページに前後記事へのナビゲーションを追加する方法です。

<?php if( get_next_post() || get_previous_post() ) : ?>
<nav id="nav-below">
<?php if( previous_post_link('%link',  '%title', TRUE, '') ) : ?> <?php endif ; ?>
<?php if( next_post_link('%link', '%title', TRUE, '') ) : ?> <?php endif ; ?>
</nav>
<?php endif; ?>

下記ページを参考にしました

444

http://www.materializing.net/archives/2009/03/30225016.php

関連記事