Link to home
Start Free TrialLog in
Avatar of Mitzie Mathis
Mitzie Mathis

asked on

How to add a link to another site in footer.

I need to add a link in the footer that says Site Designed by www.designer.com after the copyright notice. When I had the link in the footer it went to mydomain.com/www.designer.com. How do I add a link after the copyright notice? Here is the current code for the footer:
<?php echo ( get_theme_mod('wpre_footer_text') == '' ) ? ('&copy; '.date_i18n(__('Y','wp-real-estate')).' '.get_bloginfo('name').__('. All Rights Reserved. ','wp-real-estate')) : esc_html( get_theme_mod('wpre_footer_text') ); ?>

Open in new window

ASKER CERTIFIED SOLUTION
Avatar of gr8gonzo
gr8gonzo
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of Mitzie Mathis
Mitzie Mathis

ASKER

Thanks so much!