You appear to be a bot. Output may be restricted
Description
Display a multi-select box for "supports"The full set includes
- the 'core' values
- the ones we know about
- the others that have been registered and didn't know about
Usage
oik_cpt_edit_supports( $supports );
Parameters
- $supports
- ( mixed ) required –
Returns
voidSource
File name: oik-types/admin/oik-types.phpLines:
1 to 9 of 9
function oik_cpt_edit_supports( $supports ) { //bw_backtrace(); add_filter( "oik_post_type_supports", "oik_cpt_oik_post_type_supports_core", 10 ); add_filter( "oik_post_type_supports", "oik_cpt_oik_post_type_supports", 11 ); add_filter( "oik_post_type_supports", "oik_cpt_oik_post_type_supports_unknown_registered", 12 ); $supports_options = oik_cpt_get_all_post_type_supports(); $count = count( $supports_options ); BW_::bw_select( "supports", __( "Supports", "oik-types" ), $supports, array( "#options" => $supports_options, "#multiple" => $count ) ); }View on GitHub