posted
what is use of _e function in wordpress ?
i seen use of _e function in WordPress.
<?php _e( $text) ?>
so what is difference between simple echo function of the PHP and _e function of wordpress.
<?php
_e($text);
echo($text);
?>
i think both give same output which print something ? what do you say what is use of _e function in wordpress ?