Skip to content

Instantly share code, notes, and snippets.

@pickplugins
Created September 29, 2022 11:42
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save pickplugins/42386258a32c4701a014d405f3361e48 to your computer and use it in GitHub Desktop.
Save pickplugins/42386258a32c4701a014d405f3361e48 to your computer and use it in GitHub Desktop.
add_filter('wcps_slider_query_args', 'wcps_slider_query_args_20200303', 10, 2);
function wcps_slider_query_args_20200303($query_args, $args)
{
// search by keyword
$query_args['author__in'] = [2];
return $query_args;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment