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