You appear to be a bot. Output may be restricted
Description
Display the table of registered post types
Usage
_oik_cpt_registered_table();
Parameters
Returns
voidSource
File name: oik-types/admin/oik-types.phpLines:
1 to 16 of 16
function _oik_cpt_registered_table() { // $bw_types = get_option( "bw_types" ); global $wp_post_types; $bw_types = $wp_post_types; bw_trace2( $bw_types ); if ( is_array( $bw_types) && count( $bw_types )) { foreach ( $bw_types as $type => $data ) { //$type = bw_array_get( $bw_type, "type", null ); //$type_array = (array) $data ; $data_array['args'] = (array) $data; _oik_cpt_type_row( $type, $data_array ); } } }View on GitHub