From c3a76d012daf13e451bc0091d2a0fcad454c8331 Mon Sep 17 00:00:00 2001 From: audrasjb Date: Mon, 28 Mar 2022 13:17:05 +0000 Subject: [PATCH] Docs: Use third-person singular verbs for function descriptions in `wp-admin/includes/theme.php` and `wp-admin/includes/theme-install.php`, per the documentation standards. See #54729. Built from https://develop.svn.wordpress.org/trunk@53002 git-svn-id: http://core.svn.wordpress.org/trunk@52591 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-admin/includes/theme-install.php | 10 +++++----- wp-admin/includes/theme.php | 10 +++++----- wp-includes/version.php | 2 +- 3 files changed, 11 insertions(+), 11 deletions(-) diff --git a/wp-admin/includes/theme-install.php b/wp-admin/includes/theme-install.php index d532beb9b2..2ca979a03c 100644 --- a/wp-admin/includes/theme-install.php +++ b/wp-admin/includes/theme-install.php @@ -51,7 +51,7 @@ $theme_field_defaults = array( ); /** - * Retrieve list of WordPress theme features (aka theme tags). + * Retrieves the list of WordPress theme features (aka theme tags). * * @since 2.8.0 * @@ -82,7 +82,7 @@ function install_themes_feature_list() { } /** - * Display search form for searching themes. + * Displays search form for searching themes. * * @since 2.8.0 * @@ -129,7 +129,7 @@ function install_theme_search_form( $type_selector = true ) { } /** - * Display tags filter for themes. + * Displays tags filter for themes. * * @since 2.8.0 */ @@ -209,7 +209,7 @@ function display_theme( $theme ) { } /** - * Display theme content based on theme list. + * Displays theme content based on theme list. * * @since 2.8.0 * @@ -227,7 +227,7 @@ function display_themes() { } /** - * Display theme information in dialog box form. + * Displays theme information in dialog box form. * * @since 2.8.0 * diff --git a/wp-admin/includes/theme.php b/wp-admin/includes/theme.php index 209f6959ae..313b344548 100644 --- a/wp-admin/includes/theme.php +++ b/wp-admin/includes/theme.php @@ -7,7 +7,7 @@ */ /** - * Remove a theme + * Removes a theme. * * @since 2.8.0 * @@ -175,7 +175,7 @@ function theme_update_available( $theme ) { } /** - * Retrieve the update link if there is a theme update available. + * Retrieves the update link if there is a theme update available. * * Will return a link if there is an update available. * @@ -271,7 +271,7 @@ function get_theme_update_available( $theme ) { } /** - * Retrieve list of WordPress theme features (aka theme tags). + * Retrieves list of WordPress theme features (aka theme tags). * * @since 3.1.0 * @since 3.2.0 Added 'Gray' color and 'Featured Image Header', 'Featured Images', @@ -631,7 +631,7 @@ function themes_api( $action, $args = array() ) { } /** - * Prepare themes for JavaScript. + * Prepares themes for JavaScript. * * @since 3.8.0 * @@ -806,7 +806,7 @@ function wp_prepare_themes_for_js( $themes = null ) { } /** - * Print JS templates for the theme-browsing UI in the Customizer. + * Prints JS templates for the theme-browsing UI in the Customizer. * * @since 4.2.0 */ diff --git a/wp-includes/version.php b/wp-includes/version.php index e1f4c73ff2..28e78f89dd 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -16,7 +16,7 @@ * * @global string $wp_version */ -$wp_version = '6.0-alpha-53001'; +$wp_version = '6.0-alpha-53002'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.