我正在帮助一个拥有wordpress网站和一个名为nextgen的图片画廊插件的人
现在,网站中有两个搜索字段,一个用于网站(内容)中的常规搜索,另一个用于画廊中的图片。 他只想将一个搜索字段用于这两个目的。
也许有人可以在正确的方向上帮助我...
这是两个搜索框的代码...
<div class="tx-macinasearchbox-pi1" style="float:left;line-height:25px;">
<form role="search" method="get" class="search-form" action="<?php echo esc_url( home_url( '/' ) ); ?>">
<div style="float:left;">
<label>
<input type="search" class="search-field" placeholder="<?php echo esc_attr_x( 'Inhaltssuche …', 'placeholder', 'twentysixteen' ); ?>" value="<?php echo get_search_query();?>" name="s" title="<?php echo esc_attr_x( 'Inhaltssuche:', 'label', 'twentysixteen' ); ?>" />
</label>
<button style="float:left;" type="submit" class="search-submit"><span style="background-color:#a2ce1f!important;float:left;" class="screen-reader-text"> >> </span></button>
</div>
</form>
</div>
<div id="ngg_search_div" style="float:left;line-height:25px;" ">
<?php echo do_shortcode('[usts-gallery-search-box]');?>
</div>