You appear to be a bot. Output may be restricted
Description
Update an oik custom taxonomy
Usage
_oik_tax_update_taxonomy( $bw_taxonomy );
Parameters
- $bw_taxonomy
- ( mixed ) required –
Returns
voidSource
File name: oik-types/admin/oik-taxonomies.phpLines:
1 to 9 of 9
function _oik_tax_update_taxonomy( $bw_taxonomy ) { $taxonomy = bw_array_get( $bw_taxonomy['args'], "taxonomy", null ); if ( $taxonomy ) { unset( $bw_taxonomy['args']['taxonomy'] ); bw_update_option( $taxonomy, $bw_taxonomy, "bw_taxonomies" ); } else { bw_trace2( $taxonomy, "Logic error?" ); } }View on GitHub