On this page
get_next_image_link( string|int[] $size = 'thumbnail', string|false $text = false ): string
Gets the next image link that has the same post parent.
Description
See also
Parameters
$sizestring|int[] Optional-
Image size. Accepts any registered image size name, or an array of width and height values in pixels (in that order). Default
'thumbnail'.Default:
'thumbnail' $textstring|false Optional-
Link text.
Default:
false
Return
string Markup for next image link.
Source
File: wp-includes/media.php. View all references
function get_next_image_link( $size = 'thumbnail', $text = false ) {
return get_adjacent_image_link( false, $size, $text );
}
Related
Uses
| Uses | Description |
|---|---|
| get_adjacent_image_link() wp-includes/media.php | Gets the next or previous image link that has the same post parent. |
Used By
| Used By | Description |
|---|---|
| next_image_link() wp-includes/media.php | Displays next image link that has the same post parent. |
Changelog
| Version | Description |
|---|---|
| 5.8.0 | Introduced. |
© 2003–2022 WordPress Foundation
Licensed under the GNU GPLv2+ License.
https://developer.wordpress.org/reference/functions/get_next_image_link