Site Health: Improve the wording in plugin and theme version tests.

This displays a more appropriate message in case the site does not have any active plugins or installed themes.

Follow-up to [44986], [45099], [45336].

Props Presskopp, costdev, martin.krcho, Clorith, SergeyBiryukov.
Fixes #56134.
Built from https://develop.svn.wordpress.org/trunk@53816


git-svn-id: http://core.svn.wordpress.org/trunk@53375 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Sergey Biryukov 2022-08-03 13:09:09 +00:00
parent 66d425d86a
commit 1f39318123
2 changed files with 13 additions and 3 deletions

View File

@ -428,7 +428,7 @@ class WP_Site_Health {
'<p>%s</p>',
__( 'Your site has 1 active plugin, and it is up to date.' )
);
} else {
} elseif ( $plugins_active > 0 ) {
$result['description'] .= sprintf(
'<p>%s</p>',
sprintf(
@ -441,6 +441,11 @@ class WP_Site_Health {
$plugins_active
)
);
} else {
$result['description'] .= sprintf(
'<p>%s</p>',
__( 'Your site does not have any active plugins.' )
);
}
}
@ -591,7 +596,7 @@ class WP_Site_Health {
'<p>%s</p>',
__( 'Your site has 1 installed theme, and it is up to date.' )
);
} else {
} elseif ( $themes_total > 0 ) {
$result['description'] .= sprintf(
'<p>%s</p>',
sprintf(
@ -604,6 +609,11 @@ class WP_Site_Health {
$themes_total
)
);
} else {
$result['description'] .= sprintf(
'<p>%s</p>',
__( 'Your site does not have any installed themes.' )
);
}
}

View File

@ -16,7 +16,7 @@
*
* @global string $wp_version
*/
$wp_version = '6.1-alpha-53815';
$wp_version = '6.1-alpha-53816';
/**
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.