From 6cf32058ffa2281a7c3414670d5ff5734008894e Mon Sep 17 00:00:00 2001 From: Sergey Biryukov Date: Wed, 22 Jan 2020 00:41:06 +0000 Subject: [PATCH] Docs: Expand `@return` description for `the_terms()`. See #48303. Built from https://develop.svn.wordpress.org/trunk@47103 git-svn-id: http://core.svn.wordpress.org/trunk@46903 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/category-template.php | 2 +- wp-includes/version.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/wp-includes/category-template.php b/wp-includes/category-template.php index ea931d0e7a..63fda9eafd 100644 --- a/wp-includes/category-template.php +++ b/wp-includes/category-template.php @@ -1388,7 +1388,7 @@ function get_term_parents_list( $term_id, $taxonomy, $args = array() ) { * @param string $before Optional. Before list. * @param string $sep Optional. Separate items using this. * @param string $after Optional. After list. - * @return void|false False on WordPress error. + * @return void|false Void on success, false on failure. */ function the_terms( $id, $taxonomy, $before = '', $sep = ', ', $after = '' ) { $term_list = get_the_term_list( $id, $taxonomy, $before, $sep, $after ); diff --git a/wp-includes/version.php b/wp-includes/version.php index c351fdc164..bb859663f1 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -13,7 +13,7 @@ * * @global string $wp_version */ -$wp_version = '5.4-alpha-47102'; +$wp_version = '5.4-alpha-47103'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.