You appear to be a bot. Output may be restricted
Description
Determine whether or not to process this post
Usage
$bool = bw_process_this_post( $id );
Parameters
- $id
- ( integer ) required – the post ID
Returns
bool true if the post has not been processed. false otherwiseSource
File name: oik/includes/bw_posts.phpLines:
1 to 9 of 9
function bw_process_this_post( $id ) { global $processed_posts; $processed = bw_array_get( $processed_posts, $id, false ); if ( !$processed ) { $processed_posts[$id] = $id ; } bw_trace2( $processed_posts, "processed posts", true, BW_TRACE_DEBUG ); return( !$processed ); }View on GitHub View on Trac