_acf_apply_is_local_field_group_key()
_acf_apply_is_local_field_group_key
Returns true if is a local key.
Internal function — this function is designed to be used by the kernel itself. It is not recommended to use this function in your code.
No Hooks.
Returns
true|false.
Usage
_acf_apply_is_local_field_group_key( $bool, $id );
- $bool(true|false) (required)
- The result.
- $id(string) (required)
- The identifier.
Changelog
| Since 5.7.10 | Introduced. |
_acf_apply_is_local_field_group_key() acf apply is local field group key code ACF 6.0.4
function _acf_apply_is_local_field_group_key( $bool, $id ) {
return acf_is_local_field_group_key( $id );
}