如何在WordPress中为搜索输入制作占位符

我通过创建自己的搜索表单(在google中找到此代码)来覆盖默认的wordpress搜索表单。这就是:如何在WordPress中为搜索输入制作占位符

<form method="get" class="searchform" action="<?php bloginfo('url'); ?>"> 

<div>

<input class="text" type="text" value="<?php if(trim(wp_specialchars($s,1))!='') echo trim(wp_specialchars($s,1));else echo ' ';?>" name="s" id="s" />

</div>

</form>

我尝试添加一个占位符这个&我的输入线路码改成这样:

<input class="text" type="text" value="<?php if(trim(wp_specialchars($s,1))!='') echo trim(wp_specialchars($s,1));else echo ' ';?>" name="s" id="s" placeholder="Search Here" /> 

但它不是为我工作。请帮助别人。

回答:

,你可以简单地使用占位符属性,像这样:

<input type="text" placeholder="Search the site"/> 

如果你把一个值,该值将覆盖您的占位符。尝试从您的输入删除的数值,它应该工作

回答:

你可以用placeholder您输入的标签就像

<input type="text" placeholder="Search the site"/> 

以上是 如何在WordPress中为搜索输入制作占位符 的全部内容, 来源链接: utcz.com/qa/262510.html

回到顶部