ActionScheduler_wpPostStore::get_claim_id
Return an action's claim ID, as stored in the post password column
Method of the class: ActionScheduler_wpPostStore{}
No Hooks.
Returns
Mixed.
Usage
$ActionScheduler_wpPostStore = new ActionScheduler_wpPostStore(); $ActionScheduler_wpPostStore->get_claim_id( $action_id );
- $action_id(int) (required)
- Action ID.
ActionScheduler_wpPostStore::get_claim_id() ActionScheduler wpPostStore::get claim id code WC 10.8.1
public function get_claim_id( $action_id ) {
return $this->get_post_column( $action_id, 'post_password' );
}