wpseek.com
Bazujące na WordPress narzędzie wyszukiwania dla deweloperów i twórców motywów.



next_image_link › WordPress Function

Od2.5.0
Przestarzałyn/a
next_image_link ( $size = 'thumbnail', $text = false )
Parametry: (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'.
    Wymagane: Nie
    Domyślny: 'thumbnail'
  • (string|false) $text Optional. Link text. Default false.
    Wymagane: Nie
    Domyślny: false
Zdefiniowane na:
Codex:

Displays next image link that has the same post parent.



Źródło

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