get_broken_themes [ WordPress Function ]
get_broken_themes ( No parameters )
| Returns: |
|
| Defined at: |
|
{@internal Missing Short Description}}
Source
<?php
function get_broken_themes() {
_deprecated_function( __FUNCTION__, '3.4', "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;
}
?>
Examples [ wp-snippets.com ]
Google Arama Sonuçlarý
- get_broken_themes | A HitchHackers guide through WordPress
Feb 12, 2011 ... Source code. function get_broken_themes() { global $wp_broken_themes; get_themes(); return $wp_broken_themes; }. 1234. Share this: ...
hitchhackerguide.com - get_broken_themes() WordPress function reference, arguments and ...
Source. function get_broken_themes() { global $wp_broken_themes; get_themes (); return $wp_broken_themes; } WP Trac · GitHub ...
queryposts.com - Docs for page deprecated.php
/wp-admin/includes/deprecated.php. Description. Description ...
phpdoc.wordpress.org - and Bugfixrelease 1.5.2 - Xtreme Theme
May 15, 2012... ( 'allowed' => true ) )" ); function get_broken_themes() { _deprecated_function( __FUNCTION__, '3.4', "wp_get_themes( array( 'errors' => true ) ...
xtreme-theme.com