Remove Genesis Footer Links :
Default Genesis footer credits contains plenty of unnecessary links.To change or remove Genesis footer credits, paste the following code in your genesis child themes functions.php file.
Go to appearance > Editor > Functions.php
Here's the code to remove genesis footer credits from your child theme.
/** Customize the credits */
add_filter('genesis_footer_creds_text', 'custom_footer_creds_text');
function custom_footer_creds_text($creds) {
$creds = ' 2014-2015 &middot;My Genesis Themes</a> &middot; Built on the Genesis</a>';
return $creds;
}
Code explanation :
Simply change My Genesis Themes with your website name.The above code does not have any internal links for any other websites.
See image for the result after adding the above code.
Another way to remove or change genesis footer credits links:
Genesis Custom Footer and Genesis Simple edits are the plugins, where they allow you to modify or change footer credits easily. Install any one of the following plugin to do the same work for you instead of code.
1.Genesis Custom Footer and
2.Genesis Simple edits.
Need help:
We hope that, this Genesis tutorial helped you learning how to change or modify or remove genesis footer credits/links.If you face any problem, let us know by comment form