Skip to content

Instantly share code, notes, and snippets.

@jchristopher
Last active April 5, 2021 14:13
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 jchristopher/65d4f05df771292f1e319dfb6b7401aa to your computer and use it in GitHub Desktop.
Save jchristopher/65d4f05df771292f1e319dfb6b7401aa to your computer and use it in GitHub Desktop.
<?php
global $post;
$swp_query = new SWP_Query( [
's' => 'coffee', // Search query.
'engine' => 'default', // Engine name.
] );
if ( $swp_query->have_posts() ) {
while ( $swp_query->have_posts() ) :
$swp_query->the_post();
?>
<div class="search-result">
<h3><a href="<?php echo get_permalink(); ?>">
<?php the_title(); ?>
</a></h3>
<?php the_excerpt(); ?>
</div>
<?php
endwhile;
wp_reset_postdata();
} else {
?>
<p>No results found.</p>
<?php
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment