get_previous_image_link( string|int[] $size = 'thumbnail', string|false $text = false ): string

Gets the previous image link that has the same post parent.


Description

Top ↑

See also


Top ↑

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|false Optional
Link text.

Default: false


Top ↑

Return

string Markup for previous image link.


Top ↑

Source

File: wp-includes/media.php. View all references

function get_previous_image_link( $size = 'thumbnail', $text = false ) {
	return get_adjacent_image_link( true, $size, $text );
}


Top ↑

Changelog

Changelog
Version Description
5.8.0 Introduced.

Top ↑

User Contributed Notes

You must log in before being able to contribute a note or feedback.