acf-get icon indicating copy to clipboard operation
acf-get copied to clipboard

Empty Relation field returns an empty STRING

Open szepeviktor opened this issue 6 years ago • 0 comments

Here is the fix.

<?php

function acf_fix_relationship_empty_value($value)
{
    return ('' === $value) ? [] : $value;
}

add_filter('acf/format_value/type=relationship', 'acf_fix_relationship_empty_value', 999, 1);

szepeviktor avatar Oct 17 '19 14:10 szepeviktor