Advertisement
LizONBC

D Search Template

Feb 23rd, 2016
141
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.32 KB | None | 0 0
  1. <?php
  2. /**
  3. * The search results template file.
  4. *
  5. * WARNING: This template file is a core part of the
  6. * Theme Blvd WordPress Framework. It is advised
  7. * that any edits to the way this file displays its
  8. * content be done with via hooks, filters, and
  9. * template parts.
  10. *
  11. * @author Jason Bobich
  12. * @copyright Copyright (c) Jason Bobich
  13. * @link http://jasonbobich.com
  14. * @link http://themeblvd.com
  15. * @package Theme Blvd WordPress Framework
  16. */
  17.  
  18. get_header();
  19. ?>
  20.  
  21. <div id="sidebar_layout" class="clearfix">
  22. <div class="sidebar_layout-inner">
  23. <div class="row grid-protection">
  24.  
  25. <!-- CONTENT (start) -->
  26.  
  27. <div id="content" class="<?php echo esc_attr( themeblvd_get_column_class('content') ); ?> clearfix" role="main">
  28. <div class="inner">
  29. <?php themeblvd_content_top(); ?>
  30. <?php get_template_part( 'content', themeblvd_get_part('search') ); ?>
  31. <?php themeblvd_content_bottom(); ?>
  32. </div><!-- .inner (end) -->
  33. </div><!-- #content (end) -->
  34.  
  35. <!-- CONTENT (end) -->
  36.  
  37. <!-- SIDEBARS (start) -->
  38.  
  39. <?php get_sidebar('left'); ?>
  40.  
  41. <?php get_sidebar('right'); ?>
  42.  
  43. <!-- SIDEBARS (end) -->
  44.  
  45. </div><!-- .grid-protection (end) -->
  46. </div><!-- .sidebar_layout-inner (end) -->
  47. </div><!-- .#sidebar_layout (end) -->
  48.  
  49. <?php get_footer(); ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement