How to remove/ change footer credit from Eleven40 Genesis Child Theme
Eleven40 is a child theme of Genesis, if you want to get rid of the message in the footer of your wordpress Eleven40 theme “Powered by Genesis” than you can follow the steps mentioned below.
- Go to WordPress dashboard > Appearance > Editor
- Click on Theme functions (functions.php)
- Scroll down and add the code below
/** Customize the entire footer */
remove_action( 'genesis_footer', 'genesis_do_footer' );
add_action( 'genesis_footer', 'child_do_footer' );
function child_do_footer() {
?>
<p>Copyright © 2014 · <a href="https://revealthat.com/">RevealThat.com</a> · <a href="https://revealthat.com/sitemap.xml">Sitemap</a></p>
<?php
}
Leave a Reply