next_image_link( string|array $size = 'thumbnail', string $text = false )
Displays next image link that has the same post parent.
Description
See also
Parameters
- $size
-
(Optional) Image size. Accepts any valid image size, an array of width and height values in pixels (in that order), 0, or 'none'. 0 or 'none' will default to 'post_title' or
$text
. Default 'thumbnail'.Default value: 'thumbnail'
- $text
-
(Optional) Link text.
Default value: false
Source
File: wp-includes/media.php
function next_image_link( $size = 'thumbnail', $text = false ) {
adjacent_image_link(false, $size, $text);
}
Changelog
Version | Description |
---|---|
WP-2.5.0 | Introduced. |