Support

Account

Home Forums Backend Issues (wp-admin) Retrieving Relationship Values in Admin Columns – Fetching the ID, not Name Reply To: Retrieving Relationship Values in Admin Columns – Fetching the ID, not Name

  • I misunderstood, I thought it was a taxonomy field

    
    function my_custom_columns($column)
    {
    	global $post;
    	if($column == 'client')
    	{
    		if(get_field('location_assign_client'))
    		{
    			echo get_the_title(get_field('location_assign_client'));
    		}
    	}
    }