_get_wcf_checkout_id()
Returns checkout ID.
Return
(int/bool)
Source
File: classes/class-cartflows-functions.php
function _get_wcf_checkout_id() {
if ( _is_wcf_checkout_type() ) {
global $post;
return $post->ID;
}
return false;
}
Changelog
| Version | Description |
|---|---|
| 1.0.0 | Introduced. |