diff --git a/wp-includes/theme.php b/wp-includes/theme.php index 7faf3844e8..304f27fdb6 100644 --- a/wp-includes/theme.php +++ b/wp-includes/theme.php @@ -2525,7 +2525,7 @@ function add_theme_support( $feature, ...$args ) { $args[0] = array_intersect( $args[0], array_keys( $post_formats ) ); } else { - _doing_it_wrong( "add_theme_support( 'post-formats' )", __( 'You need to pass an array of types.' ), '5.6.0' ); + _doing_it_wrong( "add_theme_support( 'post-formats' )", __( 'You need to pass an array of post formats.' ), '5.6.0' ); return false; } break; diff --git a/wp-includes/version.php b/wp-includes/version.php index 9ae4190634..02a84c2854 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -13,7 +13,7 @@ * * @global string $wp_version */ -$wp_version = '5.6-beta2-49365'; +$wp_version = '5.6-beta2-49367'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.