Jump to content
Sign in to follow this  
harryfear

WhiteHousePro question

Recommended Posts

harryfear

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

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
The _e function is used for translation
Thanks a mil, Talha

Share this post


Link to post
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now

Sign in to follow this  

×