Advertisement
artemsemkin

Kinsey theme: return posts only from the current language

Mar 4th, 2025 (edited)
223
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.30 KB | None | 0 0
  1. <?php
  2.  
  3. // Remove 'lang' parameter from the query in the dynamic widgets
  4. add_filter( 'arts/elementor/dynamic_widgets/query_args', 'filter_arts_elemntor_dynamic_widgets_query_args' );
  5. function filter_arts_elemntor_dynamic_widgets_query_args( $args ) {
  6.   unset( $args['lang'] );
  7.  
  8.   return $args;
  9. }
  10.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement