You appear to be a bot. Output may be restricted
Description
Add the settings for the theme
Usage
_oik_themes_add_settings( $theme );
Parameters
- $theme
- ( string ) required – theme slug
Returns
voidSource
File name: oik/libs/oik_themes.phpLines:
1 to 8 of 8
function _oik_themes_add_settings( $theme ) { $field = bw_array_get( $theme, "theme", null ); unset( $theme['theme'] ); bw_update_option( $field, $theme, "bw_themes" ); $theme['theme'] = ""; $ok = true; return( $ok ); }View on GitHub View on Trac