acf/translate_{$this->hook_name}
acf/translate_{$this->hook_name}
Appears in: advanced-custom-fields.6.3.5
Hook Type: filter
Displaying hooks found in version: advanced-custom-fields.6.3.5apply_filters('acf/translate_{$this->hook_name}') is found 3 times:
- /includes/class-acf-internal-post-type.php line 339335336337338339340341342343344345
* @since 5.0.0
*
* @param
array
$post
The post
array
.
*/
$post
= apply_filters(
"acf/translate_{$this->hook_name}"
,
$post
);
}
return
$post
;
}
/**
- /includes/post-types/class-acf-post-type.php line 711707708709710711712713714715716717
* @since 5.0.0
*
* @param
array
$post
The post
array
.
*/
$post
= apply_filters(
"acf/translate_{$this->hook_name}"
,
$post
);
}
return
$post
;
}
/**
- /includes/post-types/class-acf-taxonomy.php line 597593594595596597598599600601602603
* @since 5.0.0
*
* @param
array
$post
The post
array
.
*/
$post
= apply_filters(
"acf/translate_{$this->hook_name}"
,
$post
);
}
return
$post
;
}
/**