Uses
| Uses | Description |
|---|---|
| wp-includes/theme.php: wp_get_themes() | Returns an array of WP_Theme objects based on the arguments. |
| wp-includes/functions.php: _deprecated_function() | Mark a function as deprecated and inform when it has been used. |
This function has been deprecated. Use wp_get_themes() instead.
Retrieves a list of broken themes.
(array)
File: wp-admin/includes/deprecated.php
function get_broken_themes() {
_deprecated_function( __FUNCTION__, '3.4.0', "wp_get_themes( array( 'errors' => true )" );
$themes = wp_get_themes( array( 'errors' => true ) );
$broken = array();
foreach ( $themes as $theme ) {
$name = $theme->get('Name');
$broken[ $name ] = array(
'Name' => $name,
'Title' => $name,
'Description' => $theme->errors()->get_error_message(),
);
}
return $broken;
} | Version | Description |
|---|---|
| 3.4.0 | Use wp_get_themes() |
| 1.5.0 | Introduced. |
© 2003–2019 WordPress Foundation
Licensed under the GNU GPLv2+ License.
https://developer.wordpress.org/reference/functions/get_broken_themes