wpseek.com
A WordPress-centric search engine for devs and theme authors



next_image_link › WordPress Function

Since2.5.0
Deprecatedn/a
next_image_link ( $size = 'thumbnail', $text = false )
Parameters: (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
    Default: 'thumbnail'
  • (string|false) $text Optional. Link text. Default false.
    Required: No
    Default: false
Defined at:
Codex:

Displays next image link that has the same post parent.



Source

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