从Wordpress搜索搜索外部网站

时间:2018-04-20 13:21:12

标签: wordpress search web external

我正在尝试更改Wordpress网站的搜索功能,以便搜索外部网站。虽然我已经能够更改表单操作以使用外部网站URL,但我无法获得正确的搜索结果。这是我正在使用的代码:

<div class="et_search_outer">
            <div class="container et_search_form_container">
                <form role="search" method="get" class="et-search-form" action="https://www.premierkitchenandbathgallery.com/search.htm?S1=">
                <?php
                    printf( '<input type="search" class="et-search-field" placeholder="%1$s" value="%2$s" name="s" title="%3$s" />',
                        esc_attr__( 'Search &hellip;', 'Divi' ),
                        get_search_query(),
                        esc_attr__( 'Search for:', 'Divi' )
                    );
                ?>
                </form>
                <span class="et_close_search_field"></span>
            </div>

如上所述,我正在尝试搜索Premiere Kitchen&amp;使用https://www.premierkitchenandbathgallery.com/search.htm?S1=

进行洗澡

但是,每次搜索都会失败,显示:

“我们很抱歉! 您搜索“” 没有任何结果。“

因此,搜索字词未被传递,或者我没有使用正确的搜索字符串。有什么建议?这是我正在搜索的网站,如果你想测试 - http://premierkitchen.solutioserver.com/(使用菜单中的搜索栏)

0 个答案:

没有答案