微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

php – WordPress自定义帖子类型未显示在搜索结果中

我有自定义帖子类型(测验)&在wordpress搜索.自定义帖子类型未显示在我的搜索结果页面中.我的搜索结果中只显示认的帖子内容.

以下是我使用的代码

的functions.PHP
    function create_posttype(){

register_post_type( 'compassquiz',
    array(
        'labels' => array(
            'name' => __( 'Compass Quiz' ),
            'singular_name' => __( 'Compass Quiz' )
        ),
        'taxonomies' => array('post_tag'),
        'public' => true,
        'publicly_queryable' => true,
        'has_archive' => true,
        'rewrite' => array('slug' => 'free-quiz-bank-exam'),
        'query_var' => true,
        'exclude_from_search' => false,
    )
);}

add_action( 'init', 'create_posttype' );

functions.PHP中的附加代码

//Read Custom Post types in Search
function filter_search($query) {
    if ($query->is_search) {
    $query->set('post_type', array('post', 'compassquiz'));
    };
    return $query;
};
add_filter('pre_get_posts', 'filter_search');

search.PHP

<?PHP
    if ( have_posts() ) : ?>
        <header class="page-header">
            <h1 class="page-title">
                <?PHP printf( esc_html__( 'Search Results for: %s', 'compass' ), '<span>' . get_search_query() . '</span>' ); ?>
            </h1>
        </header>
<?PHP

    while ( have_posts() ) : the_post();
        get_template_part( 'template-parts/content', 'search' );
    endwhile;
        the_posts_navigation();
    else :
        get_template_part( 'template-parts/content', 'none' );
    endif; 
?>

内容的search.PHP

<article id="post-<?PHP the_ID(); ?>" <?PHP post_class(); ?>>
    <header class="entry-header">
        <?PHP the_title( sprintf( '<h2 class="entry-title"><a href="%s" rel="bookmark">', esc_url( get_permalink() ) ), '</a></h2>' ); ?>
    </header>

    <div class="entry-summary">
        <?PHP 
            echo substr(get_the_excerpt(), 0,150) . '...'; 
            echo ('<br><a href="' .get_permalink() . '" class="moretag">Read More &raquo;</a>');
        ?>
    </div><!-- .entry-summary -->
</article><!-- #post-## -->

我在WP Fourm& amp;还有其他stackoverflow问题.但找不到真正有效的解决方案.

解决方法:

搜索表单中添加代码.在隐藏字段值中设置自定义帖子类型.

<input type="hidden" name="post_type" value="post type name" />

搜索表单中的多个自定义帖子类型

<input type="hidden" name="post_type" value="posttype1, posttype2, posttype3" />

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐