= 2 || $page >= 2 ) $title = "$title $sep " ; return $title; } add_filter( 'wp_title', 'busiprof_head', 10, 2 ); //Scripts Enqueue here function busiprof_scripts(){ if ( is_singular() ) wp_enqueue_script( "comment-reply" ); wp_enqueue_script('boot-business',get_template_directory_uri().'/js/menu/boot-business.js',array('jquery')); //Menu JS wp_enqueue_script('bootstrap.min',get_template_directory_uri().'/js/menu/bootstrap.min.js'); //Responsive JS wp_enqueue_script('menu',get_template_directory_uri().'/js/menu/menu.js'); //Menu JS wp_enqueue_script('bootstrap',get_template_directory_uri().'/js/bootstrap.js'); //Responsive JS wp_enqueue_script('bootstrap-tab',get_template_directory_uri().'/js/bootstrap-tab.js'); wp_enqueue_script('bootstrap-transition',get_template_directory_uri().'/js/bootstrap-transition.js'); //CSS Links wp_enqueue_style('font', get_template_directory_uri().'/css/font/font.css'); wp_enqueue_style('bootstrap', get_template_directory_uri().'/css/bootstrap.css'); wp_enqueue_style('bootstrap-responsive', get_template_directory_uri().'/css/bootstrap-responsive.css'); //wp_enqueue_style('docs',get_template_directory_uri().'/css/docs.css'); } add_action( 'wp_enqueue_scripts', 'busiprof_scripts' ); // Theme Setup /default data starts here /** Tell WordPress to run busiprof_setup() when the 'after_setup_theme' hook is run. */ /** * Sets up theme defaults and registers support for various WordPress features. * * Note that this function is hooked into the after_setup_theme hook, which runs * before the init hook. The init hook is too late for some features, such as indicating * support post thumbnails. * * To override busiprof_setup() in a child theme, add your own busiprof_setup to your child theme's * functions.php file. * * @uses add_theme_support() To add support for post thumbnails and automatic feed links. * @uses register_nav_menus() To add support for navigation menus. * @uses add_custom_background() To add support for a custom background. * @uses add_editor_style() To style the visual editor. * @uses load_theme_textdomain() For translation/localization support. * @uses add_custom_image_header() To add support for a custom header. * @uses register_default_headers() To register the default custom header images provided with the theme. * @uses set_post_thumbnail_size() To set a custom post thumbnail size. * * @since BusiProf 1.0 */ global $busiprof_resetno; add_action( 'after_setup_theme', 'busiprof_setup' ); function busiprof_setup() { // Load text domain for translation-ready load_theme_textdomain( 'busi_prof', get_template_directory() . '/functions/lang' ); add_theme_support( 'post-thumbnails' ); //supports featured image add_theme_support( 'automatic-feed-links' ); //feed links enabled do_action('busiprof_init');//load admin pannal file // setup admin pannel defual data for index page $busiprof_theme_options=Theme_Setup_data(); $current_theme_options = get_option('busiprof_theme_options'); if($current_theme_options) { $busiprof_theme_options = array_merge($busiprof_theme_options, $current_theme_options); update_option('busiprof_theme_options',$busiprof_theme_options); } else { add_option('busiprof_theme_options',$busiprof_theme_options); } //add_option('busiprof_theme_options',$busiprof_theme_options); // This theme uses wp_nav_menu() in one location. register_nav_menu( 'primary', __( 'Primary Menu', 'busi_prof' ) ); } // load admin panal file add_action( 'busiprof_init', 'busiprof_load_files', 20 ); function busiprof_load_files() { require_once('theme_setup_data.php'); require_once('functions/theme_options/theme_options.php'); // admin options panel } // admin restore options page add_action('Busiprof_restore_data', 'Busiprof_restore_data_function', $busiprof_resetno ); function Busiprof_restore_data_function($busiprof_resetno) { $busiprof_theme_options = Theme_Setup_data($busiprof_resetno); update_option('busiprof_theme_options',$busiprof_theme_options); } add_action( 'widgets_init', 'busiprof_widgets_init'); function busiprof_widgets_init() { /*sidebar*/ register_sidebar( array( 'name' => __( ' Sidebar', 'busi_prof' ), 'id' => 'sidebar-primary', 'description' => __( 'The primary widget area', 'busi_prof' ), 'before_widget' => '
', 'after_widget' => '
', 'before_title' => '

', 'after_title' => '

', ) ); register_sidebar( array( 'name' => __( 'Footer Widget Area', 'busi_prof' ), 'id' => 'footer-widget-area', 'description' => __( 'The first footer widget area', 'busi_prof' ), 'before_widget' => '
', 'after_widget' => '
', //'before_title' => '

', //'after_title' => '

', ) ); } ?>