Theme for Wordpress: Footer
Create a simple footer (footer.php).
<div id="footer">
© 2009<a class ="copyright" href="https://www.example.com">Cryonie</a> |
Theme <i>Cryonie</i> by <a href="https://www.iqlevsha.ru/wordpress/cryonie.php">
.com </a>
<a class="rsslink" href="<?php bloginfo('rss2_url') ?>">RSS</a>
</div>
<?php wp_footer() ?>
</body>
</html>
Our simplified footballer contains:
- Copyright to the site.
- The title of the theme, in this case Cryonia.
- Link to RSS feed.
- Call the wp_footer () function.
- The body tag is closed, as is the page.
wp_footer () is an event handler with which you can associate a function. It is good to add it because it can be used by plugins. You can also create your own function, as shown below:
add_action('wp_footer', 'mafonction');
function mafonction($content)
{
... un traitement quelconque ...
return $content;
}
The footballer may be more developed. Original examples are given in the references below.