Changeset 35048 for trunk/src/wp-includes/media.php
- Timestamp:
- 10/12/2015 03:49:52 PM (10 years ago)
- File:
-
- 1 edited
-
trunk/src/wp-includes/media.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/media.php
r35047 r35048 2423 2423 * @see adjacent_image_link() 2424 2424 * 2425 * @param string|array $size Optional. Registered image size or flat array of height and width dimensions. 2426 * 0 or 'none' will default to 'post_title' or `$text`. Default 'thumbnail'. 2425 * @param string|array $size Optional. Image size. Accepts any valid image size, an array of width and 2426 * height values in pixels (in that order), 0, or 'none'. 0 or 'none' will 2427 * default to 'post_title' or `$text`. Default 'thumbnail'. 2427 2428 * @param string $text Optional. Link text. Default false. 2428 2429 */ 2429 function next_image_link( $size = 'thumbnail', $text = false) {2430 function next_image_link( $size = 'thumbnail', $text = false ) { 2430 2431 adjacent_image_link(false, $size, $text); 2431 2432 }
Note: See TracChangeset
for help on using the changeset viewer.