wpseek.com
Un motore di ricerca WordPress per sviluppatori e autori di temi



previous_image_link › WordPress Function

Da2.5.0
Deprecaton/a
previous_image_link ( $size = 'thumbnail', $text = false )
Parametri: (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'.
    Richiesto: No
    Default: 'thumbnail'
  • (string|false) $text Optional. Link text. Default false.
    Richiesto: No
    Default: false
Definito a:
Codex:

Displays previous image link that has the same post parent.



Sorgenti

function previous_image_link( $size = 'thumbnail', $text = false ) {
	echo get_previous_image_link( $size, $text );
}