From 36dd1e77352f2ad6b92c092f285b8f9a1dd2a39b Mon Sep 17 00:00:00 2001 From: Sergey Biryukov Date: Wed, 21 Feb 2018 09:34:33 +0000 Subject: [PATCH] Docs: Correct `$id` parameter type for `old_slug_redirect_post_id` filter. Props dlh. Fixes #43375. git-svn-id: https://develop.svn.wordpress.org/trunk@42722 602fd350-edb4-49c9-b593-d223f7449a82 --- src/wp-includes/query.php | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/wp-includes/query.php b/src/wp-includes/query.php index 693019f659..5c61004c09 100644 --- a/src/wp-includes/query.php +++ b/src/wp-includes/query.php @@ -982,7 +982,7 @@ function wp_old_slug_redirect() { * * @since 4.9.3 * - * @param string $id The redirect post ID. + * @param int $id The redirect post ID. */ $id = apply_filters( 'old_slug_redirect_post_id', $id ); @@ -1064,7 +1064,6 @@ function _find_post_by_old_slug( $post_type ) { * @param string $post_type The current post type based on the query vars. * @return int $id The Post ID. */ - function _find_post_by_old_date( $post_type ) { global $wpdb;