home_url() returns a value, needs to be echoed in twentyten header and footer. See #9015
git-svn-id: http://svn.automattic.com/wordpress/trunk@13138 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
db0e494344
commit
ea5e854684
|
@ -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">
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue