You appear to be a bot. Output may be restricted
Description
List all the currently registered post type supports options
Usage
$array = oik_cpt_get_all_post_type_supports();
Parameters
Returns
array all the supports options that could possibly be chosenSource
File name: oik-types/admin/oik-types.phpLines:
1 to 6 of 6
function oik_cpt_get_all_post_type_supports() { $supports_options = array(); $supports_options = apply_filters( "oik_post_type_supports", $supports_options ); bw_trace2( $supports_options, "supports_options", false, BW_TRACE_DEBUG ); return( $supports_options ); }View on GitHub