You appear to be a bot. Output may be restricted
Description
Perform an akismet check on the message, if it's activated
Usage
oiku_akismet_check( $fields );
Parameters
- $fields
- ( mixed ) required –
Returns
voidSource
File name: oik-user/shortcodes/oik-contact-user.phpLines:
1 to 10 of 10
function oiku_akismet_check( $fields ) { if ( function_exists( 'akismet_http_post' ) ) { $query_string = oiku_build_query_string( $fields ); $send = oiku_call_akismet( $query_string ); } else { $send = true; } return( $send ); }View on GitHub