Add Links to my Footer
-
I run a gaming website, https://www.terminalgamer.com and want to add links to some of my pages in the footer.
For instance, I want to have links to “About”, “Staff Directory” and “Become a Staff Member” in the footer.
Here’s what my footer code looks like:
_______________________________________________________<?php /** * @package WordPress * @subpackage Magazeen_Theme */ ?> <div id="footer"> <div class="about"> <h4>Terminal Gamer - Gaming is our passion.</h4> <p class="about-text"> <?php echo get_settings( 'mag_about_blog' ); ?> </p> <p class="copyright"> © 2009 Copyright <?php bloginfo( 'name' ); ?> </p> </div><!-- End about --> </div><!-- End container --> </div><!-- End footer --> <div id="link-back"> <div class="container clearfix"> <?php wp_footer(); ?> </body> </html>
How do I insert these links so that they’ll show up as “About”, “Staff Directory” and “Become a Staff Member” – the links below are in order!
https://terminalgamer.com/about-terminal-gamer/
https://terminalgamer.com/staff-directory/
https://terminalgamer.com/become-a-staff-member/Thanks for any help, everyone!!!
Viewing 6 replies - 1 through 6 (of 6 total)
Viewing 6 replies - 1 through 6 (of 6 total)
- The topic ‘Add Links to my Footer’ is closed to new replies.