MENU

previous_image_link

現在のポストに添付された前の画像へのリンクを作成します。

This creates a link to the previous image attached to the current post.

目次

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

[php][/php]

previous_image_linkのパラメーター

$size

(string) (optional) 画像のサイズ、配列または文字列。 0またはnoneは、post_titleまたは$textがデフォルトです。

(string) (optional) Size of image, either array or string. 0 or none will default to post_title or $text.

Default: thumbnail

$text

(string) (optional) もしインクルードされた場合は、リンクは$text変数が反映されます。

(string) (optional) If included, link will reflect $text variable.

Default: false

デフォルトの使い方

[php][/php]

作業の例

[php]
[/php]

認識している画像サイズを選択

[php]


[/php]

カスタム画像サイズを定義する

[php][/php]

最初のパラメーター配列として渡すということは、新しい画像を作成しないので、注意してください。これは、リサイズにサムネイルが指定された寸法に収まるようにWebブラウザを使用します。たとえこの方法がピンチでも、ブラウザーがリサイズされた画像を見本にする方法がない事が事実なので、画像がかなりゆがんだ表示で生成します。

[php]Please note that passing an array as the first parameter will not create a new image; It will use the web browser to re-size the thumbnail to fit into the given dimensions. Although this works in a pinch, it produces a rather distorted view of the image due to the fact that browsers have no way of re sampling the re-sized image.[/php]

画像のタイトルをテキストリンクとして使用する方法

Booleanのfalseが最初のパラメーターとして使用されている場合、この関数は画像のタイトル値(メディアライブラリを介して設定)使用します。

If a Boolean false is used as the first parameter, The function will use the image’s title value (as set through the Media Library).

[php]
[/php]

リンクテキストとしてカスタム文字列を使用する方法

リンクテキストとしてカスタム文字列を指定すると、Booleanは最初のパラメーターとしてfalseを、2番目のパラメーターに文字列としてカスタムテキストを渡します。ブールfalseとして渡します。

To specify a custom string as the link text, pass a Boolean false as the first parameter and the custom text as a string to the second parameter.

[php][/php]

変更ログ

  • Since: 2.5.0
  • 2.8 added 2 parameters: $size and $text

関連テンプレートタグ

See also next_image_link()

よかったらシェアしてね!
  • URLをコピーしました!

この記事を書いた人

WordPress Love! 休日はほぼWordPress仲間と一緒に勉強会や写真を撮りに行っています。現在育児中のため、オフが多いです(>△<<<)

コメント

コメントする

このサイトはスパムを低減するために Akismet を使っています。コメントデータの処理方法の詳細はこちらをご覧ください

目次