You appear to be a bot. Output may be restricted
Description
Return an array of possible API types<pre> API type Parameter / notes Returns ———– ———————————————————————– —————————— "shortcode" API can receive up to 3 parameters: $atts, $content, $tag Returns the expanded shortcode "filter" API receives a number of parameters, defined using add_filter() Return the filtered content
- First is normally the $content to filter.
Usage
oiksc_api_types();
Parameters
Returns
voidSource
File name: oik-shortcodes/oik-shortcodes.phpLines:
1 to 19 of 19
function oiksc_api_types() { //bw_backtrace(); if ( oik_require_lib( "bobbfunc" ) ) { static $types = array( "shortcode" , "filter" , "action" , "public" , "private" , "undefined" , "deprecated" , "hook" , "method" , "file" ); return( bw_assoc( $types) ); } else { gob(); } }View on GitHub