最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

plugins - Search in WordPress

programmeradmin2浏览0评论

I created this function in functions.php:

function wpbsearchform( $form ) {

 $form = 
    '<form role="search" method="get" class="searchform" action="' . home_url( '/' ) . 
 '" >
  <div><label class="screen-reader-text" for="s">' . __('Search for:') . '</label>
  <input type="text" value="' . get_search_query() . '" name="s" id="s" />
  <input type="submit" id="searchsubmit" value="'. esc_attr__('Search') .'" />
  </div>
 </form>';

  return $form;
 }

 add_shortcode('wpbsearch', 'wpbsearchform');

The result is redirected to a page with this querty string, ?s=hello. I want to modify the search results template but I don't know where it is located. can any one help me

与本文相关的文章

发布评论

评论列表(0)

  1. 暂无评论