On this page
previous_image_link( string|int[] $size = 'thumbnail', string|false $text = false )
Displays previous image link that has the same post parent.
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
More Information
Usage:
Typically uses in attachment.php. In the WordPress default theme Twenty Eleven and Twenty Twelve, it is used in image.php.
previous_image_link( $size, $text );
Notes:
This creates a link to the previous image attached to the current post. Whenever a series of images are linked to the attachment page, it will put a ‘previous image link’ with the images when viewed in the attachment page.
Source
File: wp-includes/media.php. View all references
function previous_image_link( $size = 'thumbnail', $text = false ) {
echo get_previous_image_link( $size, $text );
}
Related
Uses
| Uses | Description |
|---|---|
| get_previous_image_link() wp-includes/media.php | Gets the previous image link that has the same post parent. |
Changelog
| Version | Description |
|---|---|
| 2.5.0 | Introduced. |
© 2003–2022 WordPress Foundation
Licensed under the GNU GPLv2+ License.
https://developer.wordpress.org/reference/functions/previous_image_link