You appear to be a bot. Output may be restricted
Description
Return the cached post IDs for this API
Usage
$array = oiksc_api_cache::get_cached();
Parameters
Returns
array of post IDsSource
File name: oik-shortcodes/classes/class-oiksc-api-cache.phpLines:
1 to 13 of 13
function get_cached() { bw_trace2( $this->meta_values, "meta_values", false, BW_TRACE_VERBOSE ); //bw_backtrace(); if ( isset( $this->meta_values[ $this->meta_key][ $this->meta_value ] ) ) { $posts = $this->meta_values[ $this->meta_key][ $this->meta_value ]; } else { $posts = null; } bw_trace2( $posts, $this->meta_value, false, BW_TRACE_DEBUG ); return( $posts ); }View on GitHub