• Hello everyone,

    since I am a newbie when it comes to coding with HTML & CSS I wanted to know how I can add more hyperlinks and what do I need to code so I do not mess up the footer.php?

    Above my (Designed by Nino. 2016) on my webpage lifeofnino.com I want to add a privacy policy and a disclaimer which by clicking guides you to a page. I would really really appreciate it.

    So it looks like this -> https://www.postimg.org/image/ah1lqb0jv/

    (Appearance >> Editor >> Theme footer [footer.php]

    What I got on so far:

    <?php
    /**
    * The template for displaying the footer.
    *
    * Contains the closing of the #content div and all content after
    *
    * @package Sydney
    */
    ?>
    </div>
    </div>
    </div><!– #content –>

    <?php if ( is_active_sidebar( ‘footer-1’ ) ) : ?>
    <?php get_sidebar(‘footer’); ?>
    <?php endif; ?>

    <i class=”fa fa-angle-up”></i>

    <footer id=”colophon” class=”site-footer” role=”contentinfo”>
    <div class=”site-info container”>
    “><?php printf( __( ‘Designed by %s’, ‘sydney’ ), ‘Nino. 2016’ ); ?>
    </div><!– .site-info –>
    </footer><!– #colophon –>
    </div><!– #page –>

    <?php wp_footer(); ?>

    </body>
    </html>

    THANK YOU!

    • This topic was modified 8 years, 2 months ago by samparisi.
  • The topic ‘Need help with simple coding! Adding hyperlink’ is closed to new replies.