wp_link_pages

Sponsored Link

Quicktag one or more times). This works in much the same way as link_pages(), the difference being that arguments are given in query string format. This tag must be within The_Loop.

wp_link_pagesのテンプレートタグ使用方法

<?php wp_link_pages( $args ); ?> 

デフォルトの使い方

<?php $args = array(
    'before'           => '<p>' . __('Pages:'),
    'after'            => '</p>',
    'link_before'      => ,
    'link_after'       => ,
    'next_or_number'   => 'number',
    'nextpagelink'     => __('Next page'),
    'previouspagelink' => __('Previous page'),
    'pagelink'         => '%',
    'more_file'        => ,
    'echo'             => 1 ); ?> 

wp_link_pagesのパラメーター

before

(string)テキストの前にすべてのリンクを配置する。 ページでのデフォルトは

:。

(string) Text to put before all the links. Defaults to

Pages:.

after

(string)テキストの後にすべてのリンクを配置する。 ページでのデフォルトは

:。

(string) Text to put after all the links. Defaults to

.

link_before

(string)テキストリンクのテキストの前に行く。デフォルトは(空白)。バージョン2.7以降が必要です。

(string) Text that goes before the text of the link. Defaults to (blank). Version 2.7 or later required.

link_after

(string)テキストリンクのテキストの後に行く。デフォルトは(空白)。バージョン2.7以降が必要です。

(string) Text that goes after the text of the link. Defaults to (blank). Version 2.7 or later required.

next_or_number

(string)ページ番号を使うべきかどうかを表示する。有効な値は:

(string) Indicates whether page numbers should be used. Valid values are:

  • number (Default)
  • next (Valid in WordPress 1.5 or after)

nextpagelink

(string)次のページへのリンクテキストです。デフォルトは次のページです。(WordPress1.5またはそれ以降に有効)

(string) Text for link to next page. Defaults to Next page. (Valid in WordPress 1.5 or after)

previouspagelink

(string)前のページへのリンクテキストです。デフォルトは前のページです。(WordPress1.5またはそれ以降に有効)

(string) Text for link to previous page. Defaults to Previous page. (Valid in WordPress 1.5 or after)

pagelink

(string) ページ番号の文字列を指定します。文字列内の%は、ページ%が”ページ1″、”ページ2″などに生成された数に置き換えられます。デフォルトは%です。

(string) Format string for page numbers. % in the string will be replaced with the number, so Page % would generate “Page 1”, “Page 2”, etc. Defaults to %.

more_file

(string) ページへのリンクが指している必要があります。デフォルトは現在のページ。

(string) Page the links should point to. Defaults to the current page.

echo

(boolean) エコーまたは結果を返すかどうかを切り替えます。デフォルトはtrueです。有効値:

(boolean) Toggles whether to echo or return the result. The default is true. Valid values:

  • 1 (True) – Default
  • 0 (False)

デフォルトの使い方

次ページと前ページを使用したり、ページ1、ページ2のようにページ番号でそれらをリストアップしてなどして、次の段落タグの前後にデフォルトでページリンクを表示します。

Displays page-links by default with paragraph tags before and after, using Next page and Previous page, listing them with page numbers as Page 1, Page 2 and so on.

<?php wp_link_pages(); ?>

段落タグでページリンクを表示する方法

ページリンクは、段落タグに包まれて表示します。

Displays page-links wrapped in paragraph tags.

<?php wp_link_pages('before=<p>&amp;after=</p>&amp;next_or_number=number&amp;pagelink=page %'); ?>

DIVでページリンクを表示する方法