0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

【WordPress】個別ページの改ページページャーのデザインを変更する

Posted at

個別記事ページ用のファイルsingle.php
改ページ(ページ区切り)を挿入し、そのページャーを表示するには
wp_link_pages()というWordpress関数を利用する。

<?php the_content(); ?>
<?php wp_link_pages(); ?>

##手順

1.管理画面上で、改ページを挿入する
スクリーンショット 2021-08-17 22.11.38.png

2.この状態で表示すると
スクリーンショット 2021-08-17 22.15.37.png

3.このままだとデザインを変更する時に、やりづらいのでphpでclassやタグを挿入する。

<?php
  $args = array(
    'before' => '<div class="pager">',
    'after' => '</div>',
    'link_before' => '<span>',
    'link_after' => '</span>'
  );
  wp_link_pages($args);
?>

4.そうすると下のようなHTMLが出力される

<div class="pager">
  <span class="post-page-numbers current" aria-current="page">
    <span>1</span>
  </span>
  <a href="http://sample/2/" class="post-page-numbers">
    <span>2</span>
  </a>
</div>

5.これでクラスやタグに合わせてCSSで装飾しやすくなる

0
0
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
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?