• Hi, in your functions uwpqsf_search_query and uwpqsf_ajax you very helpfully provide some filter hooks. Unfortunately, you have a typo for the one that should be used to alter the orderby field. Your code is:

    $ordervalue = apply_filters('uwpqsf_ometa_type',$ordertype,$getdata,$id);

    Which should be:

    $ordertype = apply_filters('uwpqsf_ometa_type',$ordertype,$getdata,$id);

    https://wordpress.org/plugins/ultimate-wp-query-search-filter/

  • The topic ‘code error regarding orderby/ordertype’ is closed to new replies.