Advertisement
Guest User

Untitled

a guest
Mar 22nd, 2012
41
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.87 KB | None | 0 0
  1. <?php
  2. add_action( 'after_setup_theme', 'et_setup_theme' );
  3. if ( ! function_exists( 'et_setup_theme' ) ){
  4. function et_setup_theme(){
  5. global $themename, $shortname;
  6. $themename = "ElegantEstate";
  7. $shortname = "elegantestate";
  8.  
  9. require_once(TEMPLATEPATH . '/epanel/custom_functions.php');
  10.  
  11. require_once(TEMPLATEPATH . '/includes/functions/comments.php');
  12.  
  13. require_once(TEMPLATEPATH . '/includes/functions/sidebars.php');
  14.  
  15. load_theme_textdomain('ElegantEstate',get_template_directory().'/lang');
  16.  
  17. require_once(TEMPLATEPATH . '/epanel/options_elegantestate.php');
  18.  
  19. require_once(TEMPLATEPATH . '/epanel/core_functions.php');
  20.  
  21. require_once(TEMPLATEPATH . '/epanel/post_thumbnails_elegantestate.php');
  22.  
  23. include(TEMPLATEPATH . '/includes/widgets.php');
  24.  
  25. require_once(TEMPLATEPATH . '/includes/functions/additional_functions.php');
  26. }
  27. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement