NoodlePoodle
04-28-2011, 05:03 AM
Hi there
I would like to make my blog title a link on my home page just like it is on all the others...
how can i modify this code... ?
<div class="im-header">
<div id="header" <?php if(!is_home()) { echo 'onclick="location.href=\''; bloginfo('url'); echo '\';" style="cursor: pointer;"'; } ?> >
<!-- jc 5/12/2010 - changes for hyperlinking blog title -->
<?php if (empty($header)) { ?>
<div class="titleText socshadow" style="margin-bottom:-5px; font-weight:bold;"><h1><a href="<?php bloginfo('url'); ?>"><?php bloginfo('name'); ?></a></h1></div>
<div class="descText socshadow"><?php bloginfo('description'); ?></div>
<?php } else { ?>
<div class="titleText socshadow" style="margin-bottom:-5px; font-weight:bold;"><h1><?php if(!is_home()) { ?><a href="<?php bloginfo('url'); ?>"><?php } ?><?php echo stripslashes($header['titleText']); ?><?php if(!is_home()) { ?></a><?php } ?></h1></div>
<div class="descText socshadow"><?php echo stripslashes($header['descText']); ?></div>
<!-- end jc -->
<?php } ?>
</div><!-- /header -->
Thank you in advance!
I would like to make my blog title a link on my home page just like it is on all the others...
how can i modify this code... ?
<div class="im-header">
<div id="header" <?php if(!is_home()) { echo 'onclick="location.href=\''; bloginfo('url'); echo '\';" style="cursor: pointer;"'; } ?> >
<!-- jc 5/12/2010 - changes for hyperlinking blog title -->
<?php if (empty($header)) { ?>
<div class="titleText socshadow" style="margin-bottom:-5px; font-weight:bold;"><h1><a href="<?php bloginfo('url'); ?>"><?php bloginfo('name'); ?></a></h1></div>
<div class="descText socshadow"><?php bloginfo('description'); ?></div>
<?php } else { ?>
<div class="titleText socshadow" style="margin-bottom:-5px; font-weight:bold;"><h1><?php if(!is_home()) { ?><a href="<?php bloginfo('url'); ?>"><?php } ?><?php echo stripslashes($header['titleText']); ?><?php if(!is_home()) { ?></a><?php } ?></h1></div>
<div class="descText socshadow"><?php echo stripslashes($header['descText']); ?></div>
<!-- end jc -->
<?php } ?>
</div><!-- /header -->
Thank you in advance!