Viewing 4 replies - 16 through 19 (of 19 total)
  • Plugin Author TC.K

    (@wp_dummy)

    Oh..I forgot to add a filter on this. Maybe will add it in next release.

    Thread Starter Aldo

    (@ab_lu)

    Would be great ??

    Thanks for all your help.

    Plugin Author TC.K

    (@wp_dummy)

    Hi, just to let you know that I already added the filter for taxonomy and meta filed query filter, before adding to the wp_query argument.

    They are barg_tax_query for taxonomy and ‘barg_meta_query’ for meta field.
    To use it, fore example for taxonomy query:

    add_filter('barg_tax_query','new_text_query','', 3);
    function new_text_query($tax_query, $get_tax, $keyword)
    {
    $tax_query = '';
    $tax_query = isset($get_tax)  ? $get_tax : null;
    return $tax_query;
    }

    Thread Starter Aldo

    (@ab_lu)

    Thanks!

Viewing 4 replies - 16 through 19 (of 19 total)
  • The topic ‘Results with multiple taxonomies not accurate’ is closed to new replies.