You appear to be a bot. Output may be restricted
Description
Update the Contact's status
Usage
oiksp_update_status( $post_id, $status );
Parameters
- $post_id
- ( ID ) required – the post ID of the "oik_contact"
- $status
- ( string ) required – the new status Note: We don't check the original status When setting a status to "double" it will change from "unconfirmed" The only other status update we might consider is "unsubscribed"
Returns
void
Source
File name: oik-squeeze/shortcodes/oik-squeeze.php
Lines:
1 to 5 of 5
function oiksp_update_status( $post_id, $status ) { update_post_meta( $post_id, "_oiksp_status", $status ); return( true ); }