Editing the Footer

Easiest file to start with is the footer

<?php bloginfo(‘name’); ?> — Name of your blog (From Options)
<?php bloginfo(‘description’); ?> — Tagline (From Options)
<?php echo get_settings(‘home’); ?> — Blog URL

HTML Link Format:
<a href=”http://www.google.com”>Google</a>

Your blog name, linked to the URL:
<a href="<?php echo get_settings(‘home’); ?>/"><?php bloginfo(‘name’); ?></a>