You appear to be a bot. Output may be restricted
Description
Usage
bw_get_theme_slugs();
Parameters
Returns
voidSource
File name: oik/libs/oik_themes.phpLines:
1 to 9 of 9
function bw_get_theme_slugs() { $theme_slugs = get_transient( 'theme_slugs' ); if ( false === $theme_slugs ) { $theme_slugs = array_keys( get_themes() ); set_transient( 'theme_slugs', $theme_slugs, 86400 ); } bw_trace2( $theme_slugs ); return( $theme_slugs ); }View on GitHub View on Trac