如何在WordPress SW Max Shop主题中更改占位符的文本?

时间:2017-10-25 12:23:37

标签: wordpress

我想用更多文字更改占位符文字。如何改变?

Image

1 个答案:

答案 0 :(得分:0)

试试这个!!

searchform.php

<form method="get" class="searchform themeform" action="<?php echo home_url('/'); ?>">
          <div>
             <input type="text" class="search" name="s" onblur="if(this.value=='')this.value='<?php _e('To search type and hit enter','hueman'); ?>';" onfocus="if(this.value=='<?php _e('To search type and hit enter','hueman'); ?>')this.value='';" value="<?php _e('To search type and hit enter','hueman'); ?>" />
          </div>
</form>

根据您的要求更改占位符文字。 :)