Advertisement
Guest User

Untitled

a guest
Oct 18th, 2021
41
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.20 KB | None | 0 0
  1. <?php
  2. /**
  3. * The template for displaying Search Results pages.
  4. *
  5. * @package OceanWP WordPress theme
  6. */
  7.  
  8. get_header(); ?>
  9.  
  10. <?php do_action( 'ocean_before_content_wrap' ); ?>
  11.  
  12. <div id="content-wrap" class="container clr">
  13.  
  14. <?php do_action( 'ocean_before_primary' ); ?>
  15.  
  16. <div id="primary" class="content-area clr">
  17.  
  18. <?php do_action( 'ocean_before_content' ); ?>
  19.  
  20. <div id="content" class="site-content clr">
  21.  
  22. <?php do_action( 'ocean_before_content_inner' ); ?>
  23.  
  24. <?php if ( have_posts() ) : ?>
  25.  
  26. <?php
  27. while ( have_posts() ) :
  28. the_post();
  29. ?>
  30.  
  31. <?php get_template_part( 'partials/search/layout' ); ?>
  32.  
  33. <?php endwhile; ?>
  34.  
  35. <?php oceanwp_pagination(); ?>
  36.  
  37. <?php else : ?>
  38.  
  39. <?php
  40. // Display no post found notice.
  41. get_template_part( 'partials/none' );
  42. ?>
  43.  
  44. <?php endif; ?>
  45.  
  46. <?php do_action( 'ocean_after_content_inner' ); ?>
  47.  
  48. </div><!-- #content -->
  49.  
  50. <?php do_action( 'ocean_after_content' ); ?>
  51.  
  52. </div><!-- #primary -->
  53.  
  54. <?php do_action( 'ocean_after_primary' ); ?>
  55.  
  56. </div><!-- #content-wrap -->
  57.  
  58. <?php do_action( 'ocean_after_content_wrap' ); ?>
  59.  
  60. <?php get_footer(); ?>
  61.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement