Customize the Site Footer

Unless otherwise indicated, the code snippets you see below should be placed into your theme’s functions.php file.

Starting with Genesis 3.1, you can edit the site footer text by navigating to Appearance > Customize > Theme Settings > Footer.

However, if you’re using an earlier version of Genesis or need to replace the entire footer, including its HTML markup (not just the paragraph text), you’ll need to add the following code snippet to your child theme’s functions.php file.

<?php
//* Do NOT include the opening php tag shown above. Copy the code shown below.
 
//* Customize the entire footer
remove_action( 'genesis_footer', 'genesis_do_footer' );
add_action( 'genesis_footer', 'sp_custom_footer' );
function sp_custom_footer() {
	?>
	<p>&copy; Copyright 2012 <a href="http://mydomain.com/">My Domain</a> &middot; All Rights Reserved &middot; Powered by <a href="http://wordpress.org/">WordPress</a> &middot; <a href="http://mydomain.com/wp-admin">Admin</a></p>
	<?php
}
What are your feelings