'; } // includes the theme options include(TEMPLATEPATH."/tools/theme-options.php"); // includes file for breadcrumbs include(TEMPLATEPATH."/tools/breadcrumbs.php"); if ( function_exists('register_sidebars') ) { register_sidebar(array('name'=>'Sidebar','before_title'=>'

','after_title'=>'

')); register_sidebar(array('name'=>'Sidebar Alt','before_title'=>'

','after_title'=>'

')); } // pulls theme options from database function sp_get_option($key, $setting = null) { $setting = ($setting) ? $setting : SP_SETTINGS_FIELD; $option = get_option($setting); if(isset($option[$key])) return wp_kses_stripslashes(wp_kses_decode_entities($option[$key])); else return FALSE; } function sp_option($key, $settings = null) { echo sp_get_option($key, $setting); } // removes WP Generator for security reasons remove_action('wp_head', 'wp_generator'); ?>