我想将用英语写成的文本更改为我的搜索栏中的hindi, 我正在使用wordpress cms开发一个印地文报纸网站,所以当用户输入英文在搜索栏中搜索相关新闻时,文本应该在印地文中改变,因为所有新闻都是用印地文写的,所以搜索新闻变得容易。如果有人知道,请帮助我。 这是我的wordpress默认搜索代码:
<section class="search_main">
<div class="search_box">
<form method="get" id="searchform" action="<?php echo home_url(); ?>/">
<div class="input-group">
<input type="text" class="form-control search-bar eng my_control" name="s" id="search" placeholder="search....." onfocus="if(this.value==this.defaultValue)this.value='';" onblur="if(this.value=='')this.value=this.defaultValue;"/>
<span class="input-group-btn">
<button class="btn my-btn" id="searchsubmit" type="button"><span class="glyphicon glyphicon-search"></span></button>
</span>
</div><!--input group-->
</form>
</div><!--search box-->
</section><!--search main-->