Skip to content

Instantly share code, notes, and snippets.

@omarkdev
Created June 1, 2017 04:05
Show Gist options
  • Save omarkdev/f3dc428822573a74f8f3b26eb466a707 to your computer and use it in GitHub Desktop.
Save omarkdev/f3dc428822573a74f8f3b26eb466a707 to your computer and use it in GitHub Desktop.
<?php
$search = isset($_GET['search']) ? trim($_GET['search']) : null;
if ($search) {
$posts = new WP_Query([
's' = $search,
'post_type' => 'downloads'
]);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment