Advertisement
Guest User

index.php

a guest
Oct 28th, 2012
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.82 KB | None | 0 0
  1. <?php
  2. /**
  3. * Header template used by Eclipse.
  4. *
  5. * Authors: Tyler Cunningham, Trent Lapinski
  6. * Copyright: © 2012
  7. * {@link http://cyberchimps.com/ CyberChimps LLC}
  8. *
  9. * Released under the terms of the GNU General Public License.
  10. * You should have received a copy of the GNU General Public License,
  11. * along with this software. In the main directory, see: /licensing/
  12. * If not, see: {@link http://www.gnu.org/licenses/}.
  13. *
  14. * @package Eclipse.
  15. * @since 1.0
  16. */
  17.  
  18. global $options, $ec_themeslug, $post; // call globals
  19. $reorder = $options->get($ec_themeslug.'_blog_section_order');
  20. ?>
  21.  
  22. <?php get_header(); ?>
  23.  
  24. <?php
  25. foreach(explode(",", $options->get($ec_themeslug.'_blog_section_order')) as $fn) {
  26. if(function_exists($fn)) {
  27. call_user_func_array($fn, array());
  28. }
  29. }
  30. ?>
  31.  
  32. <?php get_footer(); ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement