section and everything up till
* * @package WordPress * @subpackage Graphene * @since graphene 1.0 */ global $graphene_settings; ?> > <?php graphene_title(); ?> * tag of your theme, or you will break many plugins, which * generally use this hook to add elements to such * as styles, scripts, and meta tags. */ wp_head(); ?> >
ID; else $post_id = false; $header_img = graphene_get_header_image($post_id); /* * Check if the page uses SSL and change HTTP to HTTPS if true * * Experimental. Let me know if there's any problem. */ if (is_ssl() && stripos($header_img, 'https') === false) { $header_img = str_replace('http', 'https', $header_img); } // Gets the colour for header texts, or if we should display them at all if ('blank' == get_theme_mod('header_textcolor', HEADER_TEXTCOLOR) || '' == get_theme_mod('header_textcolor', HEADER_TEXTCOLOR)) $style = ' style="display:none;"'; else $style = ' style="color:#' . get_theme_mod('header_textcolor', HEADER_TEXTCOLOR) . ';"'; ?>