可以使用以下代码来指定要触发的文章类型:
function save_acf($post_id) {
// Trigger save on specific post types
$post_type = get_post_type($post_id);
if(in_array($post_type, array('custom_post_type_1', 'custom_post_type_2'))) {
// Run your ACF save logic here
}
}
add_action('acf/save_post', 'save_acf', 20);
将 custom_post_type_1
和 custom_post_type_2
替换为您想要在其中触发 ACF 保存逻辑的自定义文章类型。这将确保 ACF 钩子仅在指定的文章类型上触发。