LoginSignup
6
5

More than 5 years have passed since last update.

WordPressのカスタム投稿タイプの個別ページでページング

Posted at

WordPressは通常の投稿であれば、次のテンプレートタグでページング(ページネーション)が可能です。

previous_posts_link();
next_posts_link();

しかし、カスタム投稿タイプの場合、このリンクは利用できません。そこで、次のプラグインを導入します。

有効化したら、次のテンプレートタグでページングが可能になります。

previous_post_link_plus(array('format' => '%link','link' => 'PREV'));
next_post_link_plus(array('format' => '%link','link' => 'NEXT'));

オプションがいろいろあるので、細かな調整も可能なようです。

6
5
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
6
5