You appear to be a bot. Output may be restricted
Description
Display the table of oik custom taxonomies
Usage
_oik_tax_taxonomy_table();
Parameters
Returns
voidSource
File name: oik-types/admin/oik-taxonomies.phpLines:
1 to 9 of 9
function _oik_tax_taxonomy_table() { $bw_taxonomies = get_option( "bw_taxonomies" ); if ( is_array( $bw_taxonomies) && count( $bw_taxonomies )) { foreach ( $bw_taxonomies as $taxonomy => $data ) { //$taxonomy = bw_array_get( $bw_taxonomy, "taxonomy", null ); _oik_tax_taxonomy_row( $taxonomy, $data ); } } }View on GitHub