Guest User

Untitled

a guest
Feb 18th, 2019
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. <?php
  2.  
  3. $swp_query = new SWP_Query( array( 's' => 'coffee' ) );
  4.  
  5. if ( $swp_query->have_posts() ) {
  6. while ( $swp_query->have_posts() ) {
  7. $swp_query->the_post();
  8. get_template_part( 'content', 'search' );
  9. }
  10. } else {
  11. echo '<p>No results found!</p>';
  12. }
Add Comment
Please, Sign In to add comment