Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
尝试在 WordPress 上使用新的 get_search_form() 函数时,我注意到我无法从搜索提交按钮中删除文本标签。
有任何想法吗?
快速简便的方法是searchform.php在您的主题目录中创建一个名为的新模板。
searchform.php
这样get_search_form()将加载您的表单而不是默认表单。
get_search_form()
得到它部分工作:
$(document).ready(function(event){ $("input#searchsubmit").attr("value","");
尽管如此,价值消失需要太多时间。我怎样才能首先摆脱它?