get_next_image_link()WP 5.8.0

Gets the next image link that has the same post parent.

No Hooks.

Return

String. Markup for next image link.

Usage

get_next_image_link( $size, $text );
$size(string|int[])
Image size. Accepts any registered image size name, or an array of width and height values in pixels (in that order).
Default: 'thumbnail'
$text(string|false)
Link text.
Default: false

Notes

Changelog

Since 5.8.0 Introduced.

get_next_image_link() code WP 6.5.2

function get_next_image_link( $size = 'thumbnail', $text = false ) {
	return get_adjacent_image_link( false, $size, $text );
}