home_url() returns a value, needs to be echoed in twentyten header and footer. See #9015

git-svn-id: https://develop.svn.wordpress.org/trunk@13138 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Andrew Nacin 2010-02-14 06:12:12 +00:00
parent d1e195db99
commit 4acf280647
2 changed files with 2 additions and 2 deletions

View File

@ -6,7 +6,7 @@
<?php get_sidebar( 'footer' ); ?>
<div id="site-info">
<a href="<?php home_url() ?>/" title="<?php echo esc_attr( get_bloginfo( 'name', 'display' ) ); ?>" rel="home"><?php bloginfo( 'name' ); ?></a>
<a href="<?php echo home_url() ?>/" title="<?php echo esc_attr( get_bloginfo( 'name', 'display' ) ); ?>" rel="home"><?php bloginfo( 'name' ); ?></a>
</div>
<div id="site-generator">

View File

@ -39,7 +39,7 @@
<div id="masthead">
<div id="branding">
<div id="site-title"><span><a href="<?php home_url(); ?>/" title="<?php echo esc_attr( get_bloginfo( 'name', 'display' ) ); ?>" rel="home"><?php bloginfo( 'name' ); ?></a></span></div>
<div id="site-title"><span><a href="<?php echo home_url(); ?>/" title="<?php echo esc_attr( get_bloginfo( 'name', 'display' ) ); ?>" rel="home"><?php bloginfo( 'name' ); ?></a></span></div>
<div id="site-description"><?php bloginfo( 'description' ); ?></div>
<?php