wpseek.com
A WordPress-centric search engine for devs and theme authors
wp_skip_paused_themes › WordPress Function
Since5.2.0
Deprecatedn/a
› wp_skip_paused_themes ( $themes )
Parameters: |
|
Returns: |
|
Defined at: |
|
Codex: |
Filters a given list of themes, removing any paused themes from it.
Related Functions: wp_paused_themes, wp_skip_paused_plugins, wp_using_themes, wp_get_themes, wp_update_themes
Source
function wp_skip_paused_themes( array $themes ) {
$paused_themes = wp_paused_themes()->get_all();
if ( empty( $paused_themes ) ) {
return $themes;
}
foreach ( $themes as $index => $theme ) {
$theme = basename( $theme );
if ( array_key_exists( $theme, $paused_themes ) ) {
unset( $themes[ $index ] );
// Store list of paused themes for displaying an admin notice.
$GLOBALS['_paused_themes'][ $theme ] = $paused_themes[ $theme ];
}
}
return $themes;
}