You appear to be a bot. Output may be restricted
Description
Display the table of Taxonomy to Type relationships
Usage
_oik_x2t_x2t_table();
Parameters
Returns
voidSource
File name: oik-types/admin/oik-x2t.phpLines:
1 to 9 of 9
function _oik_x2t_x2t_table() { $bw_x2ts = get_option( "bw_x2ts" ); if ( is_array( $bw_x2ts) && count( $bw_x2ts )) { foreach ( $bw_x2ts as $x2t => $data ) { //$x2t = bw_array_get( $bw_x2t, "x2t", null ); _oik_x2t_x2t_row( $x2t, $data ); } } }View on GitHub