Support

Account

Home Forums Add-ons Repeater Field Repeater Query Issue in WP 4.8.3 Reply To: Repeater Query Issue in WP 4.8.3

  • Thanks kokers ! Your solution fix my problem :

    function my_posts_where( $where ) {
    global $wpdb;
    $where = str_replace(
    “meta_key = ‘locations_%”,
    “meta_key LIKE ‘locations_%”,
    $wpdb->remove_placeholder_escape($where)
    );
    return $where;
    }

    add_filter(‘posts_where’, ‘my_posts_where’);