Displays previous image link that has the same post parent.
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
'thumbnail'
.Default:
'thumbnail'
$text
string|falseoptional- Link text.
Default:
false
Source
foreach ( $default_types as $fallback ) {
if ( ! empty( $atts[ $fallback ] ) ) {
if ( empty( $fileurl ) ) {
Changelog
Version | Description |
---|---|
2.5.0 | Introduced. |
Basic Examples
Default Usage
Working example
Choose a Recognized Image Size
Define a Custom Image Size
Please note that passing an array as the first parameter will not create a new image; It will use the web browser to re-size the thumbnail to fit into the given dimensions. Although this works in a pinch, it produces a rather distorted view of the image due to the fact that browsers have no way of re sampling the re-sized image.
Use the Image’s Title as Link Text
If a Boolean false is used as the first parameter, The function will use the image’s title value (as set through the Media Library).
Use a Custom String as Link Text
To specify a custom string as the link text, pass a Boolean false as the first parameter and the custom text as a string to the second parameter.