acf_doing()
acf_doing
This function will tell ACF what task it is doing
No Hooks.
Returns
null. Nothing (null).
Usage
acf_doing( $event, $context );
- $event
- .
Default:'' - $context
- .
Default:''
Changelog
| Since 5.3.8 | Introduced. |
acf_doing() acf doing code ACF 6.8.8
function acf_doing( $event = '', $context = '' ) {
acf_update_setting( 'doing', $event );
acf_update_setting( 'doing_context', $context );
}