Answers:
这是我尝试过的并获得包含3个步骤的解决方案的方法。假设您的自定义帖子类型为“ 产品 ”
1。在此处添加功能代码,您可以指定archive-search.php
function template_chooser($template)
{
global $wp_query;
$post_type = get_query_var('post_type');
if( $wp_query->is_search && $post_type == 'products' )
{
return locate_template('archive-search.php'); // redirect to archive-search.php
}
return $template;
}
add_filter('template_include', 'template_chooser');
2。为自定义帖子类型创建搜索结果模板(archive-search.php)
<?php
/* Template Name: Custom Search */
get_header(); ?>
<div class="contentarea">
<div id="content" class="content_right">
<h3>Search Result for : <?php echo "$s"; ?> </h3>
<?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
<div id="post-<?php the_ID(); ?>" class="posts">
<article>
<h4><a href="<?php the_permalink(); ?>" title="<?php the_title(); ?>"><?php the_title(); ?></a></h4>
<p><?php the_exerpt(); ?></p>
<p align="right"><a href="<?php the_permalink(); ?>">Read More</a></p>
<span class="post-meta"> Post By <?php the_author(); ?>
| Date : <?php echo date('j F Y'); ?></span>
</article><!-- #post -->
</div>
<?php endwhile; ?>
<?php endif; ?>
</div><!-- content -->
</div><!-- contentarea -->
<?php get_sidebar(); ?>
<?php get_footer(); ?>
构建搜索表单
在此搜索表单中,“产品”值是隐藏的,它将仅搜索产品帖子。
<div>
<h3>Search Products</h3>
<form role="search" action="<?php echo site_url('/'); ?>" method="get" id="searchform">
<input type="text" name="s" placeholder="Search Products"/>
<input type="hidden" name="post_type" value="products" /> <!-- // hidden 'products' value -->
<input type="submit" alt="Search" value="Search" />
</form>
</div>
有关更多信息,我想将您链接到此处
http://www.wpbeginner.com/wp-tutorials/how-to-create-advanced-search-form-in-wordpress-for-custom-post-types/
get_query_var('post_type')
返回一个数组(而不是字符串),因此无法直接比较。由于我一次只搜索一种帖子类型,因此我只是将$post_type
var 更改为$post_type[0]
。
http://localhost:3000/?s=cloud%27&post_type=product
为http://localhost:3000/search/cloud/product
search_template
过滤器似乎是更合适的替代template_include
这是对我有用的。不太干净,但是我无法获得其他任何答案。
搜索表单以查找自定义帖子类型:
<form role="search" method="get" class="search-form" action="<?php echo home_url( '/' ); ?>">
<label>
<span class="screen-reader-text"><?php echo _x( 'Search for:', 'label' ) ?></span>
<input type="search" class="search-field" placeholder="<?php echo esc_attr_x( 'Search …', 'placeholder' ) ?>" value="<?php echo get_search_query() ?>" name="s" title="<?php echo esc_attr_x( 'Search for:', 'label' ) ?>" />
<input type="hidden" name="post_type" value="book" />
</label>
<input type="submit" class="search-submit" value="<?php echo esc_attr_x( 'Search', 'submit button' ) ?>" />
</form>
在functions.php中:
function searchfilter($query) {
if ($query->is_search && !is_admin() ) {
if(isset($_GET['post_type'])) {
$type = $_GET['post_type'];
if($type == 'book') {
$query->set('post_type',array('book'));
}
}
}
return $query;
}
add_filter('pre_get_posts','searchfilter');
在search.php中:
<?php if (have_posts()) : ?>
<?php while (have_posts()) : the_post(); ?>
<?php if(isset($_GET['post_type'])) {
$type = $_GET['post_type'];
if($type == 'book') {?>
/* Format for "book" custom post type */
<?php } else { ?>
/* Format for custom post types that are not "book,"
or you can use elseif to specify a second post type the
same way as above. Copy the default format here if you
only have one custom post type. */
<?php } ?>
<?php } else { ?>
/* Format to display when the post_type parameter
is not set (i.e. default format) */
<?php } ?>
<?php endwhile; else: ?>
/* What to display if there are no results. */
<?php endif; ?>
当然,在所有三个地方,您都需要用自定义帖子类型替换“图书”。
希望这对某人有帮助!
简短的代码更加具体化
function template_chooser($template)
{
global $wp_query;
$post_type = $wp_query->query_vars["pagename"];
if( isset($_GET['s']) && $post_type == 'products' )
{
return locate_template('archive-search.php'); // redirect to archive-search.php
}
return $template;
}
add_filter('template_include', 'template_chooser');
我想使用两种不同的形式进行常规搜索和自定义帖子类型的搜索。
我的自定义帖子类型使用的标题与普通页面不同,在普通页面上,对我的搜索表单的调用为:
<?php get_search_form(true); ?>
自定义帖子类型标题中对我的搜索表单的调用是:
<?php get_template_part('search','library'); ?>
其中有一个附加字段:
<input type="hidden" name="post_type" value="library" /> //Where "library" is my custom post type.
在功能文件中,我提供了以下代码。
/** Custom Search for Library */
function search_library($template)
{
global $wp_query;
$post_type = get_query_var('post_type');
if( $wp_query->is_search && $post_type == 'library' )
{
return locate_template('search-library.php'); // redirect to archive-search.php
}
return $template;
}
add_filter('template_include', 'search_library');
它将检测搜索表单是否在自定义字段中进行搜索,从而在自定义模板中显示搜索,否则使用常规模板。
编辑:修复了无论如何返回true的get_search_form()函数调用。
get_search_form('true')
应该是get_search_form(true)
。 get_search_form
正在寻找布尔输入,所以true
或false
。通过将其包装在引号中,您将为它提供一个字符串,而不是布尔参数。该功能设置,无论是方式'true'
和'false'
将返回相同的结果,因为他们都是非空字符串(这将导致该函数在两种情况下返回true)。
要解决输入查询为空的问题,可以用以下代码替换功能代码:
function template_chooser($template)
{
global $wp_query;
$post_type = get_query_var('post_type');
if( isset($_GET['s']) && $post_type == 'products' )
{
return locate_template('archive-search.php'); // redirect to archive-search.php
}
return $template;
}
add_filter('template_include', 'template_chooser');