How to Customize Genesis Footer Credits

genesis footer
Genesis comes with default footer credits and almost everyone wants to change the credit links. In this tutorial I will show you how to customize genesis footer credits?
There are a couple of options available to change the credit links; this is the mode to go. I will discuss two methods here.

With Genesis Simple edits Plugin

The easiest way to customize genesis footer credits is by using the “Genesis Simple Edits” plugin.

This method is easy and code free. It is the best option for beginners who have insufficient knowledge of coding. Go ahead, download and install the plugin. After installation is completed go to Genesis » Simple Edits. Here you will see the plugin allows you to customize post-info, post-meta, and footer area on any Genesis theme. Scroll down and find Footer Credit Text. Check the box “Modify Entire Footer Output” and then add the desired links. You can add links and HTML tags.

genesis simple edits

Edit functions.php directly

This method is for those who know how to upload files via FTP client to function.php. Simply copy the following code and paste it into the functions.php file in your child theme. Just Modify and add the code below with respect to the links you want to appear on your footer credit area.

add_filter('genesis_footer_creds_text', 'custom_footer_creds_text');
function custom_footer_creds_text($creds) {
 $creds = '<p>&copy; Copyright 2014 <a href="http://yoursite.com">Yoursite</a> &middot; All Rights Reserved  &middot; Built on <a href="http://your affiliate link">Genesis FrameWork</a> &middot; </p>
    <?php
	}';
 return  $creds;
}

The code above will output.
© Copyright 2014 Your Site Name Here. All Rights Reserved. Built on the Genesis Theme Framework.

If you have any questions, feel free to leave us a comment!