Hallo, mach ein Kopie oder unbennen dein Theme. Und dann, in diesem Beispiel, Der Link ist "Home", aber du kannst anderen Link auch einfügen. Also, hier ist der neue footer.php:
<?php
/**
* @package WordPress
* @subpackage Magazeen_Theme
*/
?>
<div id="footer">
<div class="container footer-divider clearfix">
<div class="categories">
<h4>Categories</h4>
<ul class="footer-cat clearfix">
<?php
wp_list_categories( 'title_li=&depth=1' );
?>
</ul><!-- End footer-cats -->
</div><!-- End categories -->
<div class="about">
<h4>About this Blog</h4>
<p class="about-text">
<?php echo get_settings( 'mag_about_blog' ); ?>
</p>
<p class="copyright">
© 2008 Copyright <?php bloginfo( 'name' ); ?>
</p>
</div><!-- End about -->
</div><!-- End container -->
</div><!-- End footer -->
<div id="link-back">
<div class="container clearfix">
<div class="donators">
<a href="<?php bloginfo('url'); ?>">home</a>
<a href="http://forum.smashingmagazine.com" class="smashing" title="Brought To You By: www.SmashingMagazine.com">Brought to you By: www.SmashingMagazine.com</a>
<a href="http://www.wefunction.com" class="function" title="In Partner With: www.WeFunction.com">In Partner with: www.WeFunction.com</a>
</div><!-- End donators -->
<a href="<?php bloginfo( 'rss2_url' ); ?>" class="rss" title="Subscribe to <?php bloginfo( 'name' ); ?> RSS">Subscribe</a>
</div>
</div><!-- End link-back -->
<?php wp_footer(); ?>
</body>
</html>
Alles anzeigen
Nür kleiene Veränderung nachdem Ding:
Zitat
gibt:
Zitat
<a href="<?php bloginfo('url'); ?>">home</a>
Und dann einfüg diese Code im style.css:
.donators a{
margin:0; padding:0;
width:154px; height:54px;
display:block; float:left; outline:0; color:white;
}
.donators a:hover{
margin:0; padding:0;
width:154px; height:54px;
display:block; float:left; outline:0; text-decoration:underline;
}
Du kannst dann mit farben und andere Atribute verändern ;)
Viel Glück!