IDEA additional info:
Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP
<+>UTF-8
diff --git a/wp-includes/link-template.php b/wp-includes/link-template.php
a
|
b
|
|
2318 | 2318 | * @since 2.6.0 |
2319 | 2319 | * @since 4.2.0 Added the `$adjacent` parameter. |
2320 | 2320 | * |
2321 | | * @param string $output The adjacent post link. |
2322 | | * @param string $format Link anchor format. |
2323 | | * @param string $link Link permalink format. |
2324 | | * @param WP_Post $post The adjacent post. |
2325 | | * @param string $adjacent Whether the post is previous or next. |
| 2321 | * @param string $output The adjacent post link. |
| 2322 | * @param string $format Link anchor format. |
| 2323 | * @param string $link Link permalink format. |
| 2324 | * @param WP_Post|string $post The adjacent post, or an empty string if there is no adjacent post. |
| 2325 | * @param string $adjacent Whether the post is previous or next. |
2326 | 2326 | */ |
2327 | 2327 | return apply_filters( "{$adjacent}_post_link", $output, $format, $link, $post, $adjacent ); |
2328 | 2328 | } |