最后更新时间为 2018年5月27日
一般的Wordpress主题中都有多种自定义文章类型,除了了默认的文章还会有作品、商品等自定义类型的文章,而WordPress默认只能搜索到文章,对于自定义文章类型的文章需要我们进行判断,其实也可以在搜索中添加自定义文章类型,但是这些所有的文章类型都在一个页面显示,不好区分。
如果主题中有文章、作品与产品(Woocommerce插件),在搜索中就要对文章类型进行选择,同时搜索结果中显示该文章类型下的文章,实现的方法很简单:
为搜索表单添加选项
1、一般的搜索表单:
<form method="get" class="search-form" action="<?php echo esc_url( home_url( '/' ) ); ?>" > <input class="search-input" name="s" type="text" placeholder="站内搜索…" /> <input title="站内搜索" class="search-submit" type="submit" value=""> </form>
2、添加文章类型选项的表单:
<form method="get" class="search-form" action="<?php echo esc_url( home_url( '/' ) ); ?>"> <select name="post_type" class="search-select"> <option value="post"> <?php _e( '文章', 'salong' ); ?> </option> <option value="portfolio"> <?php _e( '作品', 'salong' ); ?> </option> <option value="product"> <?php _e( '产品', 'salong' ); ?> </option> </select> <input class="search-input" name="s" type="text" placeholder="站内搜索…" /> <input title="站内搜索" class="search-submit" type="submit" value=""> </form>
<option value=”post”>中的“post”对应的是自定义文章类型,这样在搜索时就可以选项要搜索的文章类型。表单实现了,搜索结果中得显示对应的内容。
对搜索进行判断
<?php $post_type=$_GET['post_type']; $located=get_template_part( 'content/search', $post_type ); if ( isset( $post_type ) && locate_template($located, $require_once) ) { get_template_part( 'content/search', $post_type ); exit; } ?>
注意:“get_template_part( ‘content/search’, $post_type );”是获取主题根目录下的content目录下的search-$post_type.php文件,如果是文章,文件则为search-post.php,依此类推。
search-$post_type.php文件中的内容根据主题的情况而定,使用Woocommerce商城插件添加的自定义文章类型产品,不需要添加类似search-product.php文件,因为插件已经有这些文件。