Wordpress - 仅在自定义帖子类型中搜索

时间:2014-11-17 01:40:17

标签: wordpress search custom-post-type

我的网站上有博客和自定义的视频post_type(命名视频)。以及附加的各种分类法(视频类别,视频标签等)

我正在尝试设置一个搜索功能来搜索视频分类,而另一个搜索只搜索博客分类。每个页面中都会有一个搜索框,以减少结果。

这是我到目前为止所做的。

<aside id="sub-search" class="widget widget_search">
        <form class="search-form" action="http://www.studiobenna.com/jf/" method="get" role="search">
            <label>
                <span class="screen-reader-text">Search for:</span>
                <input class="search-field" type="search" name="s" value="long" placeholder="Search Videos">
            </label>
            <input type="hidden" name="post_type" value="video" />
            <input class="search-submit" type="submit" value="Search">
        </form>
    </aside>

这会导致网址以:http://example.com/?s=video&post_type=video

结尾

但这并不仅仅过滤视频分类。我有一个引用post_type = post的常规博客搜索。

在URL中查询Wordpress搜索功能以仅返回一种帖子类型的正确方法是什么?我正在使用WP扩展搜索插件以允许搜索框位于右上角screem搜索整个网站。

我还希望这些搜索仅限于帖子类型,但也要提取附加到他们的任何类别和标签(我不知道这是否是额外的步骤)。

我正在做的一个例子是浏览旁边的搜索框中的http://www.studiobenna.com/jf/?page_id=8。如果你在这里输入博客,那么应该只有一个结果标题&#34; Great Western Loop&#34;但是其他人回来了。

我尝试将此添加到我的functions.php:

function mySearchFilter($query) {
    $post_type = $_GET['post_type'];
    if (!$post_type) {
        $post_type = 'any';
    }
    if ($query->is_search) {
        $query->set('post_type', $post_type);
    };
    return $query;
};

add_filter('pre_get_posts','mySearchFilter');

但它不起作用。 我也尝试将它添加到if(have_posts)循环之前的search.php页面:

<?php

            if(isset($_GET['post_type'])) {
                $type = $_GET['post_type'];
                $args = array( 'post_type' => $type );
                $args = array_merge( $args, $wp_query->query );
            query_posts( $args );    
            }
        ?>

仍然没有。

1 个答案:

答案 0 :(得分:0)

除了查询的post_type集之外,其他所有信息都是正确的。

这将适合您的情况:

function mySearchFilter( $query ) {
    $post_type = $_GET['post_type'];
    if (!$post_type) {
       $post_type = 'any';
    }
    if ( $query->is_search ) {
       $query->set( 'post_type', array( esc_attr( $post_type ) ) );
    }
    return $query;
}
add_filter( 'pre_get_posts', 'mySearchFilter' );