From 0979c21ab0d943371520db1036c96b185229ee33 Mon Sep 17 00:00:00 2001 From: Andrew Nacin Date: Thu, 9 Dec 2010 17:59:35 +0000 Subject: [PATCH] Make get_header_image() ssl-aware. fixes #14835. git-svn-id: https://develop.svn.wordpress.org/trunk@16846 602fd350-edb4-49c9-b593-d223f7449a82 --- wp-includes/theme.php | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/wp-includes/theme.php b/wp-includes/theme.php index 3506bfa044..e2841c4564 100644 --- a/wp-includes/theme.php +++ b/wp-includes/theme.php @@ -1415,9 +1415,16 @@ function header_textcolor() { * @return string */ function get_header_image() { - $default = defined('HEADER_IMAGE') ? HEADER_IMAGE : ''; + $default = defined( 'HEADER_IMAGE' ) ? HEADER_IMAGE : ''; - return get_theme_mod('header_image', $default); + $url = get_theme_mod( 'header_image', $default ); + + if ( is_ssl() ) + $url = str_replace( 'http://', 'https://', $url ); + else + $url = str_replace( 'https://', 'http://', $url ); + + return $url; } /**