Changeset 25965
- Timestamp:
- 10/28/2013 11:05:26 AM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/link-template.php
r25959 r25965 1392 1392 1393 1393 /** 1394 * Get previouspost link that is adjacent to the current post.1394 * Get next post link that is adjacent to the current post. 1395 1395 * 1396 1396 * @since 3.7.0 1397 * @uses get_next_post_link()1398 1397 * 1399 1398 * @param string $format Optional. Link anchor format. … … 1404 1403 * @return string 1405 1404 */ 1406 function get_next_post_link( $format = ' « %link', $link = '%title', $in_same_cat = false, $excluded_terms = '', $taxonomy = 'category' ) {1405 function get_next_post_link( $format = '%link »', $link = '%title', $in_same_cat = false, $excluded_terms = '', $taxonomy = 'category' ) { 1407 1406 return get_adjacent_post_link( $format, $link, $in_same_cat, $excluded_terms, false, $taxonomy ); 1408 1407 }
Note: See TracChangeset
for help on using the changeset viewer.