Skip to content

Instantly share code, notes, and snippets.

@Olein-jp
Last active November 22, 2019 06:20
Show Gist options
  • Save Olein-jp/d465f7785e8614b66ef745e3d994b86e to your computer and use it in GitHub Desktop.
Save Olein-jp/d465f7785e8614b66ef745e3d994b86e to your computer and use it in GitHub Desktop.
<?php
$prev_post = get_previous_post();
$next_post = get_next_post();
/*
同じカテゴリーに属する記事だけをナビゲートしたい場合には、
previous_post_link('<div class="p-posts-navigation__item previous">%link</div>','%title', true );
第3引数にtrueを入れる
参照:https://www.nxworld.net/wordpress/wp-navigation-in-same-term.html
*/
if( $next_post || $prev_post ) :
?>
<div class="p-posts-navigation">
<?php previous_post_link('<div class="p-posts-navigation__item previous">%link</div>','%title'); ?>
<?php next_post_link('<div class="p-posts-navigation__item next">%link</div>','%title'); ?>
</div>
<?php endif; ?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment