solid-pixel
3/20/2017 - 12:01 PM

Prefill ACF field with Post Title

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);