Advertisement
Guest User

search-extra

a guest
Mar 11th, 2019
136
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.78 KB | None | 0 0
  1. <?php get_header(); ?>
  2.  
  3. <div id="main-content">
  4. <div class="container">
  5. <div id="content-area" class="<?php extra_sidebar_class(); ?> clearfix">
  6. <div class="et_pb_extra_column_main">
  7. <?php if ( is_search() ) { ?>
  8. <h1><?php printf( esc_html__( 'Search Results for: %s', 'extra' ), get_search_query() ); ?></h1>
  9. <?php } else if ( is_archive() && have_posts() ) { ?>
  10. <h1><?php the_archive_title(); ?></h1>
  11. <?php } ?>
  12.  
  13. <?php if ( is_extra_tax_layout() ) { ?>
  14. <?php extra_tax_layout(); ?>
  15. <?php } else { ?>
  16. <?php require locate_template( 'index-content.php' ); ?>
  17. <?php } ?>
  18. </div>
  19. <?php get_sidebar(); ?>
  20.  
  21. </div> <!-- #content-area -->
  22. </div> <!-- .container -->
  23. </div> <!-- #main-content -->
  24.  
  25. <?php get_footer();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement