mirror of
https://github.com/gosticks/wordpress-develop.git
synced 2025-10-16 12:05:38 +00:00
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:
parent
d1e195db99
commit
4acf280647
@ -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
Block a user