get_broken_themes()
Deprecated since 3.4.0. It is no longer supported and may be removed in future releases. Use wp_get_themes() instead.
Retrieves a list of broken themes.
No Hooks.
Returns
Array.
Usage
get_broken_themes();
Notes
- See: wp_get_themes()
Changelog
| Since 1.5.0 | Introduced. |
| Deprecated since 3.4.0 | Use wp_get_themes() |
get_broken_themes() get broken themes code WP 7.0.2
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;
}