get_next_image_link() WordPress Function

In order to get the next image link, you will need to use the get_next_image_link() function. This function will return the next image link that is available.

get_next_image_link( string|int[] $size = 'thumbnail', string|false $text = false ) #

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


Description

Top ↑

See also


Top ↑

Parameters

$size

(string|int[])(Optional) Image size. Accepts any registered image size name, or an array of width and height values in pixels (in that order).

Default value: 'thumbnail'

$text

(string|false)(Optional) Link text.

Default value: false


Top ↑

Return

(string) Markup for next image link.


Top ↑

Source

File: wp-includes/media.php

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


Top ↑

Changelog

Changelog
VersionDescription
5.8.0Introduced.

The content displayed on this page has been created in part by processing WordPress source code files which are made available under the GPLv2 (or a later version) license by theĀ Free Software Foundation. In addition to this, the content includes user-written examples and information. All material is subject to review and curation by the WPPaste.com community.

Show More
Show More