Support

Account

Home Forums General Issues Filtering Label for Post Object Field Reply To: Filtering Label for Post Object Field

  • https://www.advancedcustomfields.com/resources/acf-fields-post_object-result/

    
    add_filter('acf/fields/post_object/result/name=post_object_field_name', 'my_post_object_result', 20, 4);
    function my_post_object_result($title, $post, $field, $post_id) {
      $title = get_field('first_name_field', $post_id).' '.get_field('last_name_field', $post_id);
      return $title;
    }