wpseek.com
Un motore di ricerca WordPress per sviluppatori e autori di temi



get_broken_themes › WordPress Function

Da1.5.0
Deprecato3.4.0
get_broken_themes ( Nessun parametro )
Vedi:
Ritorna:
  • (array)
Definito a:
Codex:

Retrieves a list of broken themes.



Sorgenti

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;
}