1
0

Use http:// or https:// in URLs based on URL of current page

This commit is contained in:
2014-01-23 23:08:42 -05:00
parent b80db8db05
commit 3793bac300
21 changed files with 110 additions and 58 deletions

View File

@ -1,4 +1,5 @@
<?php
include_once("common.php");
/**
* @package WordPress
* @subpackage Default_Theme
@ -12,7 +13,7 @@
<title><?php wp_title('&laquo;', true, 'right'); ?> Blog - aclindsay.com</title>
<link rel="stylesheet" href="http://aclindsay.com/css/stylesheet.css" type="text/css" media="screen" />
<link rel="stylesheet" href="<?php echo $base_url; ?>/css/stylesheet.css" type="text/css" media="screen" />
<link rel="pingback" href="<?php bloginfo('pingback_url'); ?>" />
<?php if ( is_singular() ) wp_enqueue_script( 'comment-reply' ); ?>
@ -22,7 +23,7 @@
<body <?php body_class(); ?>>
<div id="header">
<div id="header-inner">
<div id="title"><a href="http://aclindsay.com">aclindsay<span id="title-inner">.com</span></a></div>
<div id="title"><a href="<?php echo $base_url; ?>">aclindsay<span id="title-inner">.com</span></a></div>
<?php include("tabs.php"); ?>
</div>
</div>