Another text that has not been translated yet in Atahualpa 3.4.6 theme of WordPress is “Powered by” text. I have successfully created the modification in order to translate this text to another language if your site uses multi language content using related plugin, such as WPML, by adding the __() function to the related text. This following modification has the relationship with another modification that I wrote in How to Translate Copyright Text in Footer of Atahualpa 3.4.6 Theme of WordPress.
Open your /wp-content/themes/{youratahualpadirectory}/functions.php file, and find this code:
139 | $footer_content .= '<br />Powered by <a href="http://wordpress.org/">WordPress</a> & the <a href="http://wordpress.bytesforall.com/" title="Customizable WordPress themes">Atahualpa Theme</a> by <a href="http://www.bytesforall.com/" title="BFA Webdesign">BytesForAll</a>. Discuss on our <a href="http://forum.bytesforall.com/" title="Atahualpa & WordPress">WP Forum</a>'; |
then replace with this following code:
139 | $footer_content .= __('<br />Powered by <a href="http://wordpress.org/">WordPress</a> & the <a href="http://wordpress.bytesforall.com/" title="Customizable WordPress themes">Atahualpa Theme</a> by <a href="http://www.bytesforall.com/" title="BFA Webdesign">BytesForAll</a>. Discuss on our <a href="http://forum.bytesforall.com/" title="Atahualpa & WordPress">WP Forum</a>', 'atahualpa'); |

Recent Comments