Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save codersaiful/6951b9b7e08f29b26b7572ecc9647838 to your computer and use it in GitHub Desktop.
Save codersaiful/6951b9b7e08f29b26b7572ecc9647838 to your computer and use it in GitHub Desktop.
<?php
add_filter('wpt_query_args',function($args){
//Change your text here
$target_Text = 'Your Text';
$args['s'] = $args['wpt-s'] = $target_Text;
$args['wpt_query_type'] = 'search';
return $args;
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment