From 4b4978ecbd6be76c41151b4fd4525d44d8fade00 Mon Sep 17 00:00:00 2001 From: Boone Gorges Date: Thu, 28 Jan 2016 04:46:26 +0000 Subject: [PATCH] Pass additional params to 'get_archive_links' filter. Props sebastian.pisula. Fixes #35573. Built from https://develop.svn.wordpress.org/trunk@36418 git-svn-id: http://core.svn.wordpress.org/trunk@36385 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/general-template.php | 8 +++++++- wp-includes/version.php | 2 +- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/wp-includes/general-template.php b/wp-includes/general-template.php index 0d6db30bf0..79ff616e27 100644 --- a/wp-includes/general-template.php +++ b/wp-includes/general-template.php @@ -1503,10 +1503,16 @@ function get_archives_link($url, $text, $format = 'html', $before = '', $after = * Filter the archive link content. * * @since 2.6.0 + * @since 4.5.0 Added `$url`, `$text`, `$format`, `$before`, and `$after` params. * * @param string $link_html The archive HTML link content. + * @param string $url URL to archive. + * @param string $text Archive text description. + * @param string $format Link format. Can be 'link', 'option', 'html', or custom. + * @param string $before Content to prepend to the description. + * @param string $after Content to append to the description. */ - return apply_filters( 'get_archives_link', $link_html ); + return apply_filters( 'get_archives_link', $link_html, $url, $text, $format, $before, $after ); } /** diff --git a/wp-includes/version.php b/wp-includes/version.php index 4979e0b6da..bd0e00fc43 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '4.5-alpha-36417'; +$wp_version = '4.5-alpha-36418'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.