diff --git a/wp-includes/post.php b/wp-includes/post.php index ce9946bcdd..c30abdc379 100644 --- a/wp-includes/post.php +++ b/wp-includes/post.php @@ -1180,7 +1180,7 @@ function get_post_ancestors( $post ) { * @param int|WP_Post $post Optional. Post ID or post object. Defaults to global $post. * @param string $context Optional. How to filter the field. Accepts 'raw', 'edit', 'db', * or 'display'. Default 'display'. - * @return string The value of the post field on success, empty string on failure. + * @return int|string|int[] The value of the post field on success, empty string on failure. */ function get_post_field( $field, $post = null, $context = 'display' ) { $post = get_post( $post ); diff --git a/wp-includes/version.php b/wp-includes/version.php index 0d19ef1fde..50b7d9ea5a 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -16,7 +16,7 @@ * * @global string $wp_version */ -$wp_version = '6.9-alpha-60620'; +$wp_version = '6.9-alpha-60621'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.