wpseek.com
A WordPress-centric search engine for devs and theme authors



get_previous_image_link › WordPress Function

Since5.8.0
Deprecatedn/a
get_previous_image_link ( $size = 'thumbnail', $text = false )
Parameters: (2)
  • (string|int[]) $size Optional. Image size. Accepts any registered image size name, or an array of width and height values in pixels (in that order). Default 'thumbnail'.
    Required: No
    Default: 'thumbnail'
  • (string|false) $text Optional. Link text. Default false.
    Required: No
    Default: false
See:
Returns:
  • (string) Markup for previous image link.
Defined at:
Codex:

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



Source

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