harryfear 0 Report post Posted July 10, 2010 In the (what I call) "rendered footer" there is this piece of code: <div class="fcol"> <div class="fcol_pad"> <h3><?php _e('More',TDOMAIN);?></h3> What does it actually do? I mean why isn't here just: <div class="fcol"> <div class="fcol_pad"> <h3>More</h3> ? Share this post Link to post Share on other sites
wp101 0 Report post Posted July 10, 2010 Hey, The _e function is used for translation: _e($message) Searches the localization module for the translation of $message, and passes the translation to the PHP echo statement. If no translation is found for $message, it just echoes $message. http://codex.wordpress.org/Translating_WordPress Share this post Link to post Share on other sites
harryfear 0 Report post Posted July 10, 2010 The _e function is used for translation Thanks a mil, Talha Share this post Link to post Share on other sites