
Genisis Framework is a prevalent WordPress subject created by studiopress, we utilized and utilizing this topic on parcel of sites (My own sites and customer sites). In Genisis Framework, there will be default footer. For changing that, there are no choices. You have to do it through coding. The following are the means to do that.
Open subjects functions.php document and utilize the code to evacuate existing activity and include new activity with custom footer HTML.
1
2
3
4
|
//* Remove the site footer remove_action( 'genesis_footer', 'genesis_footer_markup_open', 5 ); remove_action( 'genesis_footer', 'genesis_do_footer' ); remove_action( 'genesis_footer', 'genesis_footer_markup_close', 15 ); |
1
2
3
4
5
6
|
//* Customize the site footer add_action( 'genesis_footer', 'bg_custom_footer' ); function bg_custom_footer() { ?> Powered by Lisenme. Copyright © 2016 <?php } |