Prefill ACF field with Post Title
function my_acf_load_value( $value, $post_id, $field ) { $value = get_the_title(); return $value; } add_filter('acf/load_value/name=FIELD_NAME', 'my_acf_load_value', 10, 3);