Be consistent with PHP template tags

This commit is contained in:
Scott Walkinshaw
2012-09-20 12:40:43 -06:00
parent 4fda0a7ddf
commit ca582c1aff
2 changed files with 2 additions and 2 deletions

View File

@@ -3,7 +3,7 @@
<p>&copy; <?php echo date('Y'); ?> <?php bloginfo('name'); ?></p>
</footer>
<?php if (GOOGLE_ANALYTICS_ID): ?>
<?php if (GOOGLE_ANALYTICS_ID) : ?>
<script>
var _gaq=[['_setAccount','<?php echo GOOGLE_ANALYTICS_ID; ?>'],['_trackPageview']];
(function(d,t){var g=d.createElement(t),s=d.getElementsByTagName(t)[0];

View File

@@ -15,7 +15,7 @@
<?php wp_head(); ?>
<?php if (has_posts()): ?>
<?php if (has_posts()) : ?>
<link rel="alternate" type="application/rss+xml" title="<?php echo get_bloginfo('name') ?> Feed" href="<?php echo home_url() ?>/feed/">
<?php endif; ?>
</head>