IDEA additional info:
Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP
<+>UTF-8
|
|
|
1368 | 1368 | } |
1369 | 1369 | |
1370 | 1370 | /** |
1371 | | * Get previous post link that is adjacent to the current post. |
| 1371 | * Get next post link that is adjacent to the current post. |
1372 | 1372 | * |
1373 | 1373 | * @since 3.7.0 |
1374 | | * @uses get_next_post_link() |
1375 | 1374 | * |
1376 | 1375 | * @param string $format Optional. Link anchor format. |
1377 | 1376 | * @param string $link Optional. Link permalink format. |
… |
… |
|
1379 | 1378 | * @param string $excluded_categories Optional. Excluded categories IDs. |
1380 | 1379 | * @return string |
1381 | 1380 | */ |
1382 | | function get_next_post_link( $format = '« %link', $link = '%title', $in_same_cat = false, $excluded_categories = '' ) { |
| 1381 | function get_next_post_link( $format = '%link »', $link = '%title', $in_same_cat = false, $excluded_categories = '' ) { |
1383 | 1382 | return get_adjacent_post_link( $format, $link, $in_same_cat, $excluded_categories, false ); |
1384 | 1383 | } |
1385 | 1384 | |