Skip to content

Instantly share code, notes, and snippets.

@djrmom
Last active April 10, 2020 13:41
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 djrmom/dcb9601aab1b6fc2e7325839061822e9 to your computer and use it in GitHub Desktop.
Save djrmom/dcb9601aab1b6fc2e7325839061822e9 to your computer and use it in GitHub Desktop.
facetwp query for search template
<?php
/** use query in advanced mode https://d.pr/i/FOJSwM for facetwp in default WP search page **/
return [
"post_type" => "any",
"post_status" => [
"publish"
],
"posts_per_page" => get_option( 'posts_per_page' ),
"s" => get_query_var( 's' )
];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment