将搜索添加到自定义帖子类型存档

时间:2016-02-09 05:46:01

标签: php wordpress wordpress-plugin custom-post-type

我的网站有很多自定义帖子类型 例如players teams ...

对于每一个我都有档案页面,如:player-archive.php

自定义帖子类型存档页面中的

我想添加到搜索的顶部(并在可能的情况下进行过滤)。

PS:我看到有关搜索的其他问题有关搜索的代码,但它不起作用,问题没有答案,而其他人也没有使用插件,但他们通常会改进网站中的所有搜索

首先,如果对插件有任何建议也可能会很棒。

2 个答案:

答案 0 :(得分:1)

你有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 == 'players' ){
        return locate_template('archive-search.php');  //  redirect to archive-search.php
    }   
    return $template;   
}
add_filter( 'template_include', 'template_chooser' );    

2。为自定义帖子类型(search-archive.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>
        </div>
        <?php endwhile; ?>
        <?php endif; ?>
    </div><!-- content -->
</div><!-- contentarea -->   
<?php get_sidebar(); ?>
<?php get_footer(); ?>

3。 构建搜索表单
在此搜索表单中,隐藏了“玩家”值,它只会搜索玩家帖子。

<div>   
    <h3>Search players</h3>
    <form role="search" action="<?php echo site_url('/'); ?>" method="get" id="searchform">
        <input type="text" name="s" placeholder="Search players"/>
        <input type="hidden" name="post_type" value="players" /> <!-- // hidden 'players' value -->
        <input type="submit" alt="Search" value="Search" />
     </form>
 </div>

答案 1 :(得分:1)

这3个步骤对我有用:

第1步:创建搜索表单

步骤2:在你的function.php中添加以下代码:

function searchfilter($query) {
    if ($query->is_search && !is_admin() ) {
        if(isset($_GET['post_type'])) {
            $type = $_GET['post_type'];
                if($type == 'product') {
                    $query->set('post_type',array('product'));
                }
        }       
    }
return $query;
}

add_filter('pre_get_posts','searchfilter');

第3步:创建search.php文件广告添加:

<?php if (have_posts()) : ?>
<?php while (have_posts()) : the_post(); ?>
    <?php if(isset($_GET['post_type'])) {
        $type = $_GET['post_type'];
           if($type == 'product') {?>

               /* Format for "product" custom post type */

           <?php }?>
    <?php } else { ?>
<?php } ?>
<?php endwhile; else: ?>
<?php endif; ?>

供您参考:

http://www.wpbeginner.com/wp-tutorials/how-to-create-advanced-search-form-in-wordpress-for-custom-post-types/

http://wpsnipp.com/index.php/template/create-multiple-search-templates-for-custom-post-types/

希望这有帮助!