From a46bf2778170a932a6fccef67b9312672218ab19 Mon Sep 17 00:00:00 2001 From: Sergey Biryukov Date: Mon, 26 Oct 2015 15:12:24 +0000 Subject: [PATCH] Docs: After [35399], correct `$class` parameter type and description for `post_class` filter. See #34452. Built from https://develop.svn.wordpress.org/trunk@35400 git-svn-id: http://core.svn.wordpress.org/trunk@35364 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/post-template.php | 6 +++--- wp-includes/version.php | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/wp-includes/post-template.php b/wp-includes/post-template.php index b3fd95c7c1..7748785922 100644 --- a/wp-includes/post-template.php +++ b/wp-includes/post-template.php @@ -511,9 +511,9 @@ function get_post_class( $class = '', $post_id = null ) { * * @since 2.7.0 * - * @param array $classes An array of post classes. - * @param string $class A comma-separated list of additional classes added to the post. - * @param int $post_id The post ID. + * @param array $classes An array of post classes. + * @param array $class An array of additional classes added to the post. + * @param int $post_id The post ID. */ $classes = apply_filters( 'post_class', $classes, $class, $post->ID ); diff --git a/wp-includes/version.php b/wp-includes/version.php index 280cc88be4..556f147b6d 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '4.4-beta1-35399'; +$wp_version = '4.4-beta1-35400'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.