Wordpress主题自定义

时间:2017-05-16 09:08:00

标签: php wordpress themes

我正致力于自定义名为BusinessFinder +的Wordpress主题。这似乎是一个非常坚实的主题,但我从客户那里得到了一些难以调整的压力。

我确定functions.php文件有一个简单的代码段,但我的技能不会延伸到那么远。

我试图更改主页搜索表单的占位符文本(位于英雄滑块下方): https://www.betauk.com/nebetasi/

当前文字是"搜索关键字",我们需要它是"搜索成员"。

此外,还有另一个搜索表单布局(在英雄图片的顶部): https://www.betauk.com/nebetasi/about-beta/

这具有相同的占位符文字问题,而不是"搜索关键字",我们需要它是"搜索成员"。

我试过一个简单的" str_replace"摘录但它没有触及搜索表单中的内容。我已经尝试过" str_replace"在主页的其他文本部分(例如),它可以工作。

任何人都可以提供任何提示吗?

2 个答案:

答案 0 :(得分:0)

如果您无法找到更改占位符的方法,则可以使用jquery执行此操作。

请检查:

$(document).ready(function(){ 
 $('#searchinput-text').attr("placeholder","Search members");
  })
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<input type="text" name="s" id="searchinput-text" placeholder="Search keyword" class="searchinput" value="">

使用此代码,您的两个搜索文本框占位符文本都将被更改。

感谢。

答案 1 :(得分:0)

Why don't you just go into where the form is (either in widgets or possibly in appearance->editor and amongst the files there) and find the form widget and edit the forms placeholder attribute?

<input type="text" name="s" id="searchinput-text" placeholder="Search keyword" class="searchinput" value="">