Definition:
function previous_image_link($size = 'thumbnail', $text = false) {}
Parameters
- string $size: Optional, default is ‘thumbnail’. Size of image, either array or string. 0 or ‘none’ will default to post_title or $text;
- string $text: Optional, default is false. If included, link will reflect $text variable.
Return values
returns:HTML content.
Source code
function previous_image_link($size = 'thumbnail', $text = false) {
adjacent_image_link(true, $size, $text);
}
2609

February 12, 2011 


previous_comments_link
Definition:
function previous_comments_link( $label = '' ) {}
Parameters
Source code
function previous_comments_link( $label = '' ) { echo get_previous_comments_link( $label ); }2607