Remove footer link in Genesis & Thesis Theme
In this post I’m sharing how to remove default Footer Link from Genesis WordPress Theme. Here is a step-by-step guide on removing footer link.

For Genesis Theme:

Step1: Log-in into wp-admin panel, go to “Appearance” Tab and click on “Editor” tab.
Step2: When you click on “Editor” (in step1), it open a new window and now click on “Functions.php” file.
Step3: As soon as you click on “Functions.php” (in step2), it open a new window.
Step4: Now simply add this code in “Functions.php” file.
remove_action('genesis_footer', 'genesis_do_footer');

For Thesis Theme:

Step1: Log-in into wp-admin panel, go to “Thesis” Tab and click on “Custom File Editor” tab.
Step2: When you click on “Custom File Editor” (in step1), it open a new window and now click on “Custom_Functions.php” file.
Step3: As soon as you click on “Custom_Functions.php” (in step2), it open a new window.
Step4: Now simply add this code in “Custom_Functions.php” file.
remove_action('thesis_hook_footer', 'thesis_attribution');
Congratulations, you have successfully removed Footer Link from Genesis & Thesis WordPress
 
Top