get_previous_image_link() WordPress Function
The get_previous_image_link() function retrieves the previous image link. This is useful for creating a "previous" link or button on image attachment pages.
get_previous_image_link( string|int[] $size = 'thumbnail', string|false $text = false ) #
Gets the previous image link that has the same post parent.
Description
See also
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
Return
(string) Markup for previous image link.
Source
File: wp-includes/media.php
function get_previous_image_link( $size = 'thumbnail', $text = false ) { return get_adjacent_image_link( true, $size, $text ); }
Expand full source codeCollapse full source codeView on TracView on GitHub
Changelog
Version | Description |
---|---|
5.8.0 | Introduced. |