Skip to content

Instantly share code, notes, and snippets.

@khleomix
Last active February 16, 2022 20:34
Show Gist options
  • Save khleomix/1bfcb7f146b62965a87e3edfa564368e to your computer and use it in GitHub Desktop.
Save khleomix/1bfcb7f146b62965a87e3edfa564368e to your computer and use it in GitHub Desktop.
get_posts() with search
<?php
$posts = new WP_Query( array( 's' => $search_string ) );
$posts = $posts->get_posts();
foreach( $posts as $post ) { /* ... */ }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment