Support

Account

Home Forums Front-end Issues Multiple ID's in relationship field — LIKE query returns inappropriate posts Reply To: Multiple ID's in relationship field — LIKE query returns inappropriate posts

  • Hi @andrewmartin

    I believe the issue occurred because you have an extra double quote for the value there:

    'value' => '"' . get_the_ID() . '""',

    Could you please change it to this one:

    'value' => '"' . get_the_ID() . '"',

    Thanks 🙂