acf/duplicate_{$this->hook_name}
acf/duplicate_{$this->hook_name}
Appears in: advanced-custom-fields.6.2.7
Hook Type: action
Displaying hooks found in version: advanced-custom-fields.6.2.7do_action('acf/duplicate_{$this->hook_name}') is found 2 times:
- /includes/class-acf-internal-post-type.php line 747743744745746747748749750751752753
* @since 5.0.0
*
* @param
array
$post
The ACF post
array
.
*/
do_action(
"acf/duplicate_{$this->hook_name}"
,
$post
);
return
$post
;
}
/**
* Activates
or
deactivates an ACF post.
- /includes/post-types/class-acf-field-group.php line 366362363364365366367368369370371372
* @since 5.0.0
*
* @param
array
$post
The ACF post
array
.
*/
do_action(
"acf/duplicate_{$this->hook_name}"
,
$post
);
return
$post
;
}
/**
* Returns a modified ACF field group
array
ready
for
export.