__( 'Main Navigation', 'awaken' ), ) ); register_nav_menus( array( 'top_navigation' => __( 'Top Navigation', 'awaken' ), ) ); /* * Switch default core markup for search form, comment form, and comments * to output valid HTML5. */ add_theme_support( 'html5', array( 'search-form', 'comment-form', 'comment-list', 'gallery', 'caption', ) ); /* * Enable support for Post Formats. * See http://codex.wordpress.org/Post_Formats */ add_theme_support( 'post-formats', array( 'aside', 'image', 'video', 'quote', 'link', ) ); // Setup the WordPress core custom background feature. add_theme_support( 'custom-background', apply_filters( 'awaken_custom_background_args', array( 'default-color' => 'ffffff', 'default-image' => '', ) ) ); } endif; // awaken_setup add_action( 'after_setup_theme', 'awaken_setup' ); /** * Include Redux Theme Options Framework */ if ( ! class_exists('ReduxFramework') ) { require_once( dirname( __FILE__ ) . '/ReduxCore/framework.php' ); } /** * Tweak the redux framework. * Register all the theme options. * Registers the wpex_option function. */ if ( ! isset( $awaken_options ) ) { require_once( dirname( __FILE__ ) . '/functions/admin-config.php' ); } /** * This function Contains All The scripts that Will be Loaded in the Theme Header including Custom Javascript, Custom CSS, etc. */ function awaken_initialize_header() { global $awaken_options; //Global theme options variable //Place all Javascript Here echo ""; //Java Script Ends //CSS Begins echo ""; //CSS Ends } add_action('wp_head', 'awaken_initialize_header'); // Replaces the excerpt "more" text by a link function awaken_excerpt_more($more) { global $awaken_options; global $post; return ' ' . $awaken_options['excerpt-more'] . ''; } add_filter('excerpt_more', 'awaken_excerpt_more'); /** * Register widget area. * * @link http://codex.wordpress.org/Function_Reference/register_sidebar */ function awaken_widgets_init() { register_sidebar( array( 'name' => __( 'Main Sidebar', 'awaken' ), 'id' => 'sidebar-1', 'description' => '', 'before_widget' => '', 'before_title' => '

', 'after_title' => '

', ) ); register_sidebar( array( 'name' => __( 'Magazine Full Width Sidebar', 'awaken' ), 'id' => 'magazine-1', 'description' => '', 'before_widget' => '', 'before_title' => '

', 'after_title' => '

', ) ); register_sidebar( array( 'name' => __( 'Magazine Half Width Sidebar', 'awaken' ), 'id' => 'magazine-2', 'description' => '', 'before_widget' => '', 'before_title' => '

', 'after_title' => '

', ) ); register_sidebar( array( 'name' => __( 'Footer Left Sidebar', 'awaken' ), 'id' => 'footer-left', 'description' => '', 'before_widget' => '', 'before_title' => '

', 'after_title' => '

', ) ); register_sidebar( array( 'name' => __( 'Footer Mid Sidebar', 'awaken' ), 'id' => 'footer-mid', 'description' => '', 'before_widget' => '', 'before_title' => '

', 'after_title' => '

', ) ); register_sidebar( array( 'name' => __( 'Footer Right Sidebar', 'awaken' ), 'id' => 'footer-right', 'description' => '', 'before_widget' => '', 'before_title' => '

', 'after_title' => '

', ) ); } add_action( 'widgets_init', 'awaken_widgets_init' ); /** * Enqueue scripts and styles. */ function awaken_scripts() { wp_enqueue_style( 'font-awesome', get_template_directory_uri() . '/css/font-awesome.min.css', array(), '4.1.0' ); wp_enqueue_style( 'bootstrap.css', get_template_directory_uri() . '/css/bootstrap.css', array(), 'all' ); wp_enqueue_style( 'awaken-style', get_stylesheet_uri() ); wp_enqueue_script( 'awaken-navigation', get_template_directory_uri() . '/js/navigation.js', array(), '20120206', true ); wp_enqueue_script('bootstrap-js', get_template_directory_uri() . '/js/bootstrap.min.js',array( 'jquery' ),'', true ); wp_enqueue_script( 'awaken-scripts', get_template_directory_uri() . '/js/scripts.js', array( 'jquery' ) ); $awaken_user_agent = strtolower($_SERVER['HTTP_USER_AGENT']); if(preg_match('/(?i)msie [1-8]/',$awaken_user_agent)) { wp_enqueue_script( 'html5shiv', get_template_directory_uri() . '/js/html5shiv.js', true ); } wp_enqueue_script( 'respond', get_template_directory_uri() . '/js/respond.min.js' ); wp_enqueue_script( 'awaken-skip-link-focus-fix', get_template_directory_uri() . '/js/skip-link-focus-fix.js', array(), '20130115', true ); if ( is_singular() && comments_open() && get_option( 'thread_comments' ) ) { wp_enqueue_script( 'comment-reply' ); } } add_action( 'wp_enqueue_scripts', 'awaken_scripts' ); /** * Load Google Fonts */ function awaken_load_fonts() { wp_register_style('googleWebFonts1', 'http://fonts.googleapis.com/css?family=Ubuntu:400,500'); wp_enqueue_style('googleWebFonts1'); wp_register_style('googleWebFonts2', 'http://fonts.googleapis.com/css?family=Source+Sans+Pro:400,600,700,400italic'); wp_enqueue_style('googleWebFonts2'); wp_register_style('googleWebFonts3', 'http://fonts.googleapis.com/css?family=Roboto:400,500,700'); wp_enqueue_style('googleWebFonts3'); } add_action('wp_print_styles', 'awaken_load_fonts'); /** * Activate a favicon for the website. */ function awaken_favicon() { global $awaken_options; if ( $awaken_options['favicon-display-checkbox'] == '1' ) { $favicon = $awaken_options['favicon-uploader']['url']; $awaken_favicon_output = ''; if ( !empty( $favicon ) ) { $awaken_favicon_output .= ''; } echo $awaken_favicon_output; } } add_action( 'admin_head', 'awaken_favicon' ); add_action( 'wp_head', 'awaken_favicon' ); /** * Implement the Custom Header feature. */ //require get_template_directory() . '/inc/custom-header.php'; /** * Custom template tags for this theme. */ require get_template_directory() . '/inc/template-tags.php'; /** * Custom functions that act independently of the theme templates. */ require get_template_directory() . '/inc/extras.php'; /** * Customizer additions. */ require get_template_directory() . '/inc/customizer.php'; /** * Load Jetpack compatibility file. */ require get_template_directory() . '/inc/jetpack.php'; /** * Load Widget files */ require get_template_directory() . '/inc/widgets/three-block-posts.php'; require get_template_directory() . '/inc/widgets/single-category.php'; require get_template_directory() . '/inc/widgets/dual-category.php'; require get_template_directory() . '/inc/widgets/medium-rectangle.php'; require get_template_directory() . '/inc/widgets/popular-tags-comments.php'; require get_template_directory() . '/inc/widgets/video-widget.php'; /** * Add flex slider. */ function awaken_flex_scripts() { wp_enqueue_script( 'flexslider', get_template_directory_uri() . '/js/jquery.flexslider-min.js', array('jquery'), false, true ); wp_register_script( 'add-awaken-flex-js', get_template_directory_uri() . '/js/awaken.flexslider.js', array(), '', true ); wp_enqueue_script( 'add-awaken-flex-js' ); wp_register_style( 'add-flex-css', get_template_directory_uri() . '/css/flexslider.css','','', 'screen' ); wp_enqueue_style( 'add-flex-css' ); } add_action( 'wp_enqueue_scripts', 'awaken_flex_scripts' ); /* Load slider */ require get_template_directory() . '/inc/functions/slider.php';