Support

Account

Home Forums General Issues How to make a field unique Reply To: How to make a field unique

  • So I don’t need help anymore I got it fixed

    by adding:

    'posts_per_page' => -1,
    to this

    $args = array(
            'post_type' => $post_type,
            'post_status' => 'publish, draft, trash',
            'post__not_in' => array($post_id),
            'posts_per_page' => -1,
            'meta_query' => array(
                array(
                    'key' => 'email',
                    'value' => $value
                )
            )
        );
        $query = new WP_Query($args);