Changeset 10495 for trunk/wp-includes/media.php
- Timestamp:
- 02/04/2009 03:12:24 PM (17 years ago)
- File:
-
- 1 edited
-
trunk/wp-includes/media.php (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-includes/media.php
r10227 r10495 690 690 * 691 691 * @since 2.5.0 692 */ 693 function previous_image_link() { 694 adjacent_image_link(true); 692 * @param string $size Optional, default is 'thumbnail'. Size of image, either array or string. 0 or 'none' will default to post_title or $text; 693 * @param string $text Optional, default is false. If included, link will reflect $text variable. 694 * @return string HTML content. 695 */ 696 function previous_image_link($size = 'thumbnail', $text = false) { 697 adjacent_image_link(true, $size, $text); 695 698 } 696 699 … … 699 702 * 700 703 * @since 2.5.0 701 */ 702 function next_image_link() { 703 adjacent_image_link(false); 704 * @param string $size Optional, default is 'thumbnail'. Size of image, either array or string. 0 or 'none' will default to post_title or $text; 705 * @param string $text Optional, default is false. If included, link will reflect $text variable. 706 * @return string HTML content. 707 */ 708 function next_image_link($size = 'thumbnail', $text = false) { 709 adjacent_image_link(false, $size, $text); 704 710 } 705 711 … … 713 719 * @param bool $prev Optional. Default is true to display previous link, true for next. 714 720 */ 715 function adjacent_image_link($prev = true ) {721 function adjacent_image_link($prev = true, $size = 'thumbnail', $text = false) { 716 722 global $post; 717 723 $post = get_post($post); … … 725 731 726 732 if ( isset($attachments[$k]) ) 727 echo wp_get_attachment_link($attachments[$k]->ID, 'thumbnail', true);733 echo wp_get_attachment_link($attachments[$k]->ID, $size, true, false, $text); 728 734 } 729 735
Note: See TracChangeset
for help on using the changeset viewer.