Answers for "_e in wordpress"

PHP
0

_e in wordpress

/*
If you want to echo the translated string, then you will be using _e and when you just want to have the translated string, then you will be using __.
*/

_e('this is a message', 'twentyfourteen');

echo __('this is a message', 'twentyfourteen');
Posted by: Guest on November-19-2020

Browse Popular Code Answers by Language