From ed7033ec9b9c5f7697e47a3e9c7a4ddd5424babf Mon Sep 17 00:00:00 2001 From: Sergey Biryukov Date: Tue, 30 Dec 2014 06:57:23 +0000 Subject: [PATCH] Pass the $adjacent parameter to the "{$adjacent}_post_link" filter. props ankit.gade@rtcamp.com, kpdesign. fixes #30440. Built from https://develop.svn.wordpress.org/trunk@31000 git-svn-id: http://core.svn.wordpress.org/trunk@30982 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/link-template.php | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/wp-includes/link-template.php b/wp-includes/link-template.php index 97a59906ba..83d0c533c7 100644 --- a/wp-includes/link-template.php +++ b/wp-includes/link-template.php @@ -1865,13 +1865,15 @@ function get_adjacent_post_link( $format, $link, $in_same_term = false, $exclude * of adjacency, 'next' or 'previous'. * * @since 2.6.0 + * @since 4.2.0 Added the `$adjacent` parameter. * - * @param string $output The adjacent post link. - * @param string $format Link anchor format. - * @param string $link Link permalink format. - * @param WP_Post $post The adjacent post. + * @param string $output The adjacent post link. + * @param string $format Link anchor format. + * @param string $link Link permalink format. + * @param WP_Post $post The adjacent post. + * @param string $adjacent Whether the post is previous or next. */ - return apply_filters( "{$adjacent}_post_link", $output, $format, $link, $post ); + return apply_filters( "{$adjacent}_post_link", $output, $format, $link, $post, $adjacent ); } /**