将 WordPress 搜索表单中的 <input type="submit"> 更改为 <button>

问题描述 投票:0回答:1

我正在尝试将 WordPress 搜索提交

<input type="submit">
按钮更改为
<button>
。所以我尝试使用
str_replace()
。这是我的代码:

add_filter('get_search_form', 'my_search_form_text');
 
function my_search_form_text($text) {
     $text = str_replace(
        '<input type="submit" class="search-submit" value="Search">',
        '<button type="submit" class="search-submit btn btn-outline-primary"><i class="fas fa-search"></i></button>',
        $text
     );
     return $text;
}

但是没用。

php wordpress button replace
1个回答
1
投票

在您的主题文件夹中

searchform.php
文件存在。如果不从默认主题复制到您的主题。

此处将您的

<input>
替换为
<button>

© www.soinside.com 2019 - 2024. All rights reserved.