You appear to be a bot. Output may be restricted
Description
Save the callee list for the current API
Usage
oikai_save_callees( $post_id );
Parameters
- $post_id
- ( ID ) required – the ID of the calling oik_api
Returns
voidSource
File name: oik-shortcodes/admin/oik-apis.phpLines:
1 to 9 of 9
function oikai_save_callees( $post_id ) { global $oikai_callee; bw_trace2( $oikai_callee, "oikai_callee", true, BW_TRACE_VERBOSE ); //if ( $oikai_callee[0] == $post_id ) { // array_shift( $oikai_callee ); //} $oikai_mapped_callees = oikai_map_callees( $oikai_callee ); bw_update_post_meta( $post_id, "_oik_api_calls", $oikai_mapped_callees ); }View on GitHub