如何在Wordpress中向我的引导搜索栏添加搜索功能?

时间:2020-02-23 05:57:23

标签: php wordpress twitter-bootstrap

我想向使用引导程序创建的搜索框添加搜索功能。我在某处读到<?php get_search_form(); ?>会有所帮助,但不确定如何将其与现有搜索框一起使用。

这是我的搜索框现在的样子。我想让这个功能发挥作用

<!--searchbox-->
        <div class="input-group ">
            <input type="text" class="form-control" placeholder="Search for anything">
            <div class="input-group-append">
              <button class="btn btn-success" type="submit">Go</button>
            </div>
        </div>

1 个答案:

答案 0 :(得分:1)

 <form role="search" method="get" id="searchform" class="searchform" action="<?php echo esc_url( home_url( '/' ) ); ?>">
       <div class="input-group ">
            <label class="screen-reader-text" for="s"><?php _x( 'Search for:', 'label' ); ?></label>
            <input class="form-control"  type="text" value="<?php echo get_search_query(); ?>" name="s" id="s" placeholder="Search for anything" />
            <input class="btn btn-success" type="submit" id="searchsubmit" value="Go" />
        </div>
    </form>

然后您应该具有(search.php)文件来显示结果