devmnnit

Search.php

Oct 18th, 2014
556
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. <?php get_header(); # show header ?>
  2.  
  3. <?php
  4. #loop through builder panels
  5. $builders = it_get_setting('search_builder');
  6. if(!empty($builders) && count($builders) > 2) {
  7. foreach($builders as $builder) {
  8. it_shortcode($builder);
  9. }
  10. } else {
  11. echo do_shortcode('[blog title="Blog" icon="magazine"]');
  12. }
  13. ?>
  14.  
  15. <?php get_footer(); # show footer ?>
Advertisement
Add Comment
Please, Sign In to add comment