wpseek.com
Uma área de pesquisa sobre o WordPress para devs e autores do tema



next_image_link › WordPress Function

Desde2.5.0
Obsoleton/a
next_image_link ( $size = 'thumbnail', $text = false )
Parâmetros: (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'.
    Required: No
    Padrão: 'thumbnail'
  • (string|false) $text Optional. Link text. Default false.
    Required: No
    Padrão: false
Definido em:
Codex:

Displays next image link that has the same post parent.



Fonte

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