how to add footer links to all webpages
Permalink 2 users found helpful
how do you add footer links on all the pages on your site?
The easiest way is to hard code it into your footer.php - this way it will automatically appear on all of your pages.
Here is an example of code:
If you want to add a background image to the links, go to your theme's css file and add the following:
Keep in mind you will have to substitute your website, etc in the header.php and the CSS code will vary depending on your current CSS file. But this should give you a good start.
Here is an example of code:
If you want to add a background image to the links, go to your theme's css file and add the following:
#page #footer{ padding-top:14px; clear:both; padding-bottom:16px; padding-left: 20px; padding-right:20px;color:#fff; font-size:10px; background: url(images/footer.png) no-repeat top; }
Keep in mind you will have to substitute your website, etc in the header.php and the CSS code will vary depending on your current CSS file. But this should give you a good start.
I agree, the easiest way to add links in the footer is to add them to the footer.php file in your template.
Thanks everybody! Very helpful!
One: you can hard-code this into the footer.php module under your theme.
Or the easier way, but only if you have a theme that allows this:
Two: If your theme has an editable footer section, you can go to "Pages and Themes" in the Dashboard, hit Inspect > Page Types on the theme you're using, then Defaults. Every change you make in there will translate over to the rest of the site.