Advertisement
Guest User

Untitled

a guest
Aug 19th, 2019
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. <?php
  2. add_filter( 'kleo_ajax_query_args', function ( $args ) {
  3. // load the terms using LIKE search
  4. $term_ids = get_terms( [
  5. 'name__like' => $_REQUEST['s'],
  6. 'fields' => 'ids',
  7. 'taxonomy' => 'post_tag',
  8. 'hide_empty' => true
  9. ] );
  10.  
  11. $args['tax_query'] = [
  12. 'relation' => 'OR',
  13. [
  14. 'taxonomy' => 'post_tag',
  15. 'field' => 'id',
  16. 'terms' => $term_ids
  17. ]
  18. ];
  19.  
  20. return $args;
  21. } );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement