如何使用Genesis WordPress中的现有代码将搜索结果更改为Google搜索结果?

时间:2016-08-11 07:22:57

标签: php wordpress wordpress-theming genesis wordpress-hook

我通过在我的子主题std::copy(std::begin(x), std::end(x), std::back_inserter(strID)); 页面中添加add_filter()代码创建了一个搜索框。

代码是:

function.php

这很好用。现在我想将自定义搜索更改为谷歌搜索。我在互联网上检查了很多教程。但是所有教程都在为您的子主题添加function add_search_to_wp_menu ( $items, $args ) { if( 'primary' === $args -> theme_location ) { $items .= '<li class="menu-item menu-item-search">'; $items .= '<form method="get" class="menu-search-form" action="' . get_bloginfo('home') . '/"><p><input class="text_input" type="text" value="Click to Search" name="s" id="s" onfocus="if (this.value == \'Click to Search\') {this.value = \'\';}" onblur="if (this.value == \'\') {this.value = \'Click to Search\';}" /><input type="submit" class="my-wp-search" id="searchsubmit" value="search" /></p></form>'; $items .= '</li>'; } return $items; } add_filter('wp_nav_menu_items','add_search_to_wp_menu',10,2); 模板,并按照您的意愿行事。

我的问题是如何将此Google搜索代码添加到searchform.php中现有的搜索代码中。我想我有一个谷歌搜索代码:

function.php

我可以将此代码直接添加到<script> --google search code </script> 而不是function.php中的现有搜索代码而不是function.php吗?

0 个答案:

没有答案