patric-boehner
6/19/2016 - 12:16 AM

Override the footer in Hello Genesis child theme.

Override the footer in Hello Genesis child theme.

<?php

//* Custom functions to modify child theme

//* Remove the original custom footer
remove_action( 'genesis_footer', 'hello_pro_custom_footer' );

//* 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
}