How to remove default footer from Atahualpa

When I start this website then I checked lot of free wordpress themes from various good sites. After all I searched and got Atahualpa theme accidentally. And now my opinion is that It is a best free theme for wordpress and cannot be compared to any other theme. Hope everyone like who has some knowledge about CSS, PHP and HTML languages. You can use totally free this theme but if you want to get special features then you donate some money to author for supporting this beautiful theme. In this post I tell you how to remove default footer in Atahualpa Theme and add your own links in the footer. However I request to everyone If you are not able to give donation to author, then you can use this tip.Atahualpa-Theme

Simply go to theme editor and select Theme Functions (functions.php) search for footer_content in your text file editor and replace the code as instruction below.

function footer_output($footer_content) {
$footer_content .= ‘
Powered by WordPress & the Atahualpa WP Theme by BytesForAll. Now with Tutorials & Support‘;
return $footer_content;
}

}

[adsense]replace with below code:

function footer_output($footer_content) {
$footer_content .= ”;
return $footer_content;
}

}

Note: Take care while replacing the code in (functions.php).