ActionScheduler_wpPostStore::get_claim_id()publicWC 1.0

Return an action's claim ID, as stored in the post password column

Метод класса: ActionScheduler_wpPostStore{}

Хуков нет.

Возвращает

Разное.

Использование

$ActionScheduler_wpPostStore = new ActionScheduler_wpPostStore();
$ActionScheduler_wpPostStore->get_claim_id( $action_id );
$action_id(int) (обязательный)
Action ID.

Код ActionScheduler_wpPostStore::get_claim_id() WC 8.7.0

public function get_claim_id( $action_id ) {
	return $this->get_post_column( $action_id, 'post_password' );
}