__( 'Header Menu', 'graphene' ), 'secondary-menu' => __( 'Secondary Menu', 'graphene' ), 'footer-menu' => __( 'Footer Menu', 'graphene' ), ) ); // Add support for custom background global $wp_version; add_theme_support( 'custom-background' ); /* Add support for custom header */ define( 'HEADER_TEXTCOLOR', apply_filters( 'graphene_header_textcolor', '000000' ) ); define( 'HEADER_IMAGE', apply_filters( 'graphene_default_header_image', '%s/images/headers/flow.jpg' ) ); define( 'HEADER_IMAGE_WIDTH', apply_filters( 'graphene_header_image_width', graphene_grid_width( $graphene_settings['gutter_width'] * 2, 16 ) ) ); define( 'HEADER_IMAGE_HEIGHT', apply_filters( 'graphene_header_image_height', $graphene_settings['header_img_height'] ) ); define( 'NO_HEADER_TEXT', ! apply_filters( 'graphene_header_text', true ) ); $args = array( 'width' => HEADER_IMAGE_WIDTH, 'height' => HEADER_IMAGE_HEIGHT, 'default-image' => HEADER_IMAGE, 'header-text' => ! NO_HEADER_TEXT, 'default-text-color' => HEADER_TEXTCOLOR, 'wp-head-callback' => '', 'admin-head-callback' => 'graphene_admin_header_style', ); $args = apply_filters( 'graphene_custom_header_args', $args ); add_theme_support( 'custom-header', $args ); set_post_thumbnail_size( $args['width'], $args['height'], true ); // Register default custom headers packaged with the theme. %s is a placeholder for the theme template directory URI. register_default_headers( graphene_get_default_headers() ); do_action( 'graphene_setup' ); } endif; add_action( 'after_setup_theme', 'graphene_setup' ); if ( ! function_exists( 'graphene_get_default_headers' ) ) { function graphene_get_default_headers() { $headers = array( 'Schematic' => array( 'url' => '%s/images/headers/schematic.jpg', 'thumbnail_url' => '%s/images/headers/schematic-thumb.jpg', 'description' => __( 'Header image by Syahir Hakim', 'graphene' ) ), 'Flow' => array( 'url' => '%s/images/headers/flow.jpg', 'thumbnail_url' => '%s/images/headers/flow-thumb.jpg', 'description' => __( 'This is the default Graphene theme header image, cropped from image by Quantin Houyoux at sxc.hu', 'graphene' ) ), 'Fluid' => array( 'url' => '%s/images/headers/fluid.jpg', 'thumbnail_url' => '%s/images/headers/fluid-thumb.jpg', 'description' => __( 'Header image cropped from image by Ilco at sxc.hu', 'graphene' ) ), 'Techno' => array( 'url' => '%s/images/headers/techno.jpg', 'thumbnail_url' => '%s/images/headers/techno-thumb.jpg', 'description' => __( 'Header image cropped from image by Ilco at sxc.hu', 'graphene' ) ), 'Fireworks' => array( 'url' => '%s/images/headers/fireworks.jpg', 'thumbnail_url' => '%s/images/headers/fireworks-thumb.jpg', 'description' => __( 'Header image cropped from image by Ilco at sxc.hu', 'graphene' ) ), 'Nebula' => array( 'url' => '%s/images/headers/nebula.jpg', 'thumbnail_url' => '%s/images/headers/nebula-thumb.jpg', 'description' => __( 'Header image cropped from image by Ilco at sxc.hu', 'graphene' ) ), 'Sparkle' => array( 'url' => '%s/images/headers/sparkle.jpg', 'thumbnail_url' => '%s/images/headers/sparkle-thumb.jpg', 'description' => __( 'Header image cropped from image by Ilco at sxc.hu', 'graphene' ) ), ); return apply_filters( 'graphene_default_header_images', $headers ); } } if ( ! function_exists( 'graphene_admin_header_style' ) ) : /** * Styles the header image displayed on the Appearance > Header admin panel. */ function graphene_admin_header_style(){ global $graphene_settings; ?> __( 'Sidebar Widget Area', 'graphene' ), 'id' => 'sidebar-widget-area', 'description' => __( 'The first sidebar widget area (will always be displayed on the right hand side).', 'graphene' ), 'before_widget' => '', 'before_title' => "

", 'after_title' => "

", ) ); register_sidebar(array( 'name' => __( 'Sidebar Two Widget Area', 'graphene' ), 'id' => 'sidebar-two-widget-area', 'description' => __( 'The second sidebar widget area (will always be displayed on the left hand side).', 'graphene' ), 'before_widget' => '', 'before_title' => "

", 'after_title' => "

", ) ); register_sidebar(array( 'name' => __( 'Footer Widget Area', 'graphene' ), 'id' => 'footer-widget-area', 'description' => __( "The footer widget area. Leave empty to disable. Set the number of columns to display at the theme's Display Options page.", 'graphene' ), 'before_widget' => '', 'before_title' => "

", 'after_title' => "

", ) ); /** * Register alternate widget areas to be displayed on the front page, if enabled * * @package Graphene * @subpackage Graphene * @since Graphene 1.0.8 */ if ( $graphene_settings['alt_home_sidebar']) { register_sidebar(array( 'name' => __( 'Front Page Sidebar Widget Area', 'graphene' ), 'id' => 'home-sidebar-widget-area', 'description' => __( 'The first sidebar widget area that will only be displayed on the front page.', 'graphene' ), 'before_widget' => '', 'before_title' => "

", 'after_title' => "

", ) ); register_sidebar(array( 'name' => __( 'Front Page Sidebar Two Widget Area', 'graphene' ), 'id' => 'home-sidebar-two-widget-area', 'description' => __( 'The second sidebar widget area that will only be displayed on the front page.', 'graphene' ), 'before_widget' => '', 'before_title' => "

", 'after_title' => "

", ) ); } if ( $graphene_settings['alt_home_footerwidget']) { register_sidebar(array( 'name' => __( 'Front Page Footer Widget Area', 'graphene' ), 'id' => 'home-footer-widget-area', 'description' => __( "The footer widget area that will only be displayed on the front page. Leave empty to disable. Set the number of columns to display at the theme's Display Options page.", 'graphene' ), 'before_widget' => '', 'before_title' => "

", 'after_title' => "

", ) ); } /* Header widget area */ if ( $graphene_settings['enable_header_widget']) : register_sidebar(array( 'name' => __( 'Header Widget Area', 'graphene' ), 'id' => 'header-widget-area', 'description' => __("The header widget area.", 'graphene' ), 'before_widget' => '', 'before_title' => "

", 'after_title' => "

", ) ); endif; /* Action hooks widget areas */ if ( count( $graphene_settings['widget_hooks'] ) > 0 ) { $available_hooks = graphene_get_action_hooks( true ); foreach ($graphene_settings['widget_hooks'] as $hook) { if (in_array($hook, $available_hooks)) { register_sidebar(array( 'name' => ucwords( str_replace('_', ' ', $hook) ), 'id' => $hook, 'description' => sprintf( __("Dynamically added widget area. This widget area is attached to the %s action hook.", 'graphene'), "'$hook'" ), 'before_widget' => '', 'before_title' => "

", 'after_title' => "

", )); // to display the widget dynamically attach the dynamic method add_action( $hook, 'graphene_display_dynamic_widget_hooks' ); } } } } do_action( 'graphene_widgets_init' ); } add_action( 'widgets_init', 'graphene_widgets_init' ); /** * Display a dynamic widget area, this is hooked to the user selected do_action() hooks available in Graphene. * @global array $graphene_settings */ function graphene_display_dynamic_widget_hooks(){ global $graphene_settings; // to find the current action $actionhook_id = current_filter(); if ( in_array( $actionhook_id, $graphene_settings['widget_hooks']) && is_active_sidebar( $actionhook_id ) ) : ?>