我想通过使用_()
, _e()
. 这对我不起作用。我试过了value= _e( \'Upload an image\')
但没有成功。
function logo_image() {
$options = get_option(\'plugin_options\');
echo"<input type=\'text\' class=\'regular-text text-upload\' name=\'plugin_options[logo_image]\' value=\'{$options[\'logo_image\']}\'/>";
echo "<input type=\'button\' class=\'button button-upload\' value=\'Upload an image\'/>";
echo"<img style=\'max-width: 200px; display: block;\' src=\'{$options[\'logo_image\']}\' class=\'preview-upload\'/>";
}