php 在Wordpress搜索中包括所有自定义帖子类型

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php 在Wordpress搜索中包括所有自定义帖子类型相关的知识,希望对你有一定的参考价值。

<?php
function include_post_types_in_search($query) {
    if(is_search()) {
        $post_types = get_post_types(array('public' => true, 'exclude_from_search' => false), 'objects');
        $searchable_types = array();
        if($post_types) {
            foreach( $post_types as $type) {
                $searchable_types[] = $type->name;
            }
        }
        $query->set('post_type', $searchable_types);
    }
    return $query;
}
add_action('pre_get_posts', 'include_post_types_in_search');
?>

以上是关于php 在Wordpress搜索中包括所有自定义帖子类型的主要内容,如果未能解决你的问题,请参考以下文章

PHP/Wordpress:在升序列表中包括小时和分钟

如何在自定义 .php 文件中包含 WordPress 函数?

如何在自定义.php文件中包含WordPress功能?

PHP Wordpress作者页面在配置文件中包含自定义字段

php 防止Wordpress在p标签中包装图像和iframe(默认WYSIWYG和高级自定义字段Wordpress WYSIWYG插件)

如何显示 Wordpress 搜索结果?