footer html codew code example
Example 1: html footer
<footer>
<nav>
<a href="some-url" target="_blank">Footer link</a>
<a href="some-url">Footer link</a>
<a href="some-url">Footer link</a>
</nav>
© 2020 Some copyright message.
<address>
Contact <a href="mailto:[email protected]">me</a>
</address>
</footer>
Example 2: add footer code
/* Describe what the code snippet does so you can remember later on */
add_action('wp_footer', 'your_function_name');
function your_function_name(){
?>
PASTE HEADER CODE HERE
<?php
};