Advertisement
Guest User

Untitled

a guest
Mar 26th, 2011
353
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.86 KB | None | 0 0
  1. <?php
  2.  
  3. require_once(TEMPLATEPATH . '/epanel/custom_functions.php');
  4.  
  5. require_once(TEMPLATEPATH . '/includes/trial-themes.php');
  6.  
  7. require_once(TEMPLATEPATH . '/includes/functions/comments.php');
  8.  
  9. require_once(TEMPLATEPATH . '/includes/functions/sidebars.php');
  10.  
  11. load_theme_textdomain('SimplePress',get_template_directory().'/lang');
  12.  
  13. require_once(TEMPLATEPATH . '/epanel/options_simplepress.php');
  14.  
  15. require_once(TEMPLATEPATH . '/epanel/core_functions.php');
  16.  
  17. require_once(TEMPLATEPATH . '/epanel/post_thumbnails_simplepress.php');
  18.  
  19. function register_main_menus() {
  20.     register_nav_menus(
  21.         array(
  22.             'primary-menu' => __( 'Primary Menu' )
  23.         )
  24.     );
  25. };
  26. if (function_exists('register_nav_menus')) add_action( 'init', 'register_main_menus' );
  27. $wp_ver = substr($GLOBALS['wp_version'],0,3);
  28. if ($wp_ver >= 2.8) include(TEMPLATEPATH . '/includes/widgets.php'); ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement