当我在博客的搜索框中输入搜索查询时,它只会返回到带有URL的博客首页http://www.mywebpage.com/?s+id%3D=mysearchquery. 这是我的搜索框代码:
<form method="get" id="searchform" action="<?php esc_url( home_url( \'/\' ) ); ?>">
<?php
echo "<!--[if !IE]> --><input type=\'text\' name=\'s id=\'s\' class=\'blog_search_field\' placeholder=\'Search\' value=\'\'/><!--<![endif]-->";
echo "<!--[if IE]><input type=\'text\' name=\'s id=\'s\' class=\'blog_search_field\' value=\'Search\' /><![endif]-->";
?>
</form>
首页是www.mywebpage上的静态页面。com,然后博客索引页位于www.mywebpage。com/?page\\u id=7。任何指针都会很棒。感谢阅读!