wpseek.com
Eine auf WordPress spezialiserte Suchmaschine für Entwickler und Theme-Autoren



next_image_link › WordPress Function

Seit2.5.0
Veraltetn/v
next_image_link ( $size = 'thumbnail', $text = false )
Parameter: (2)
  • (string|int[]) $size Optional. Image size. Accepts any registered image size name, or an array of width and height values in pixels (in that order). Default 'thumbnail'.
    Erforderlich: Nein
    Standard: 'thumbnail'
  • (string|false) $text Optional. Link text. Default false.
    Erforderlich: Nein
    Standard: false
Definiert in:
Codex:

Displays next image link that has the same post parent.



Quellcode

function next_image_link( $size = 'thumbnail', $text = false ) {
	echo get_next_image_link( $size, $text );
}