WordPress按meta过滤,过滤选项在搜索后消失

时间:2016-12-29 20:18:16

标签: php wordpress filtering admin custom-fields

我编写了这些函数,以便根据元数据过滤帖子。上下文是一个房地产网站,属性是CPT。在这些功能中,我正在销售它们的代理商过滤管理员方面的属性。该功能适用​​于任何新的尝试。如果选择了代理,则过滤器将仅显示该代理销售的属性。

我在初始过滤后仍然存在的问题。代理商名单就会消失。我感觉我为了创建列表而运行的循环因任何原因而被停止。

为了直观地说明,这里是搜索前过滤器列表的外观图像。

enter image description here

以下是使用过滤器后的看法

enter image description here

显然,如果在任何设定值的网址中显示ADMIN_FILTER_FIELD_VALUE =(此处为ID号),则循环不会运行。

这是所有这些的代码。

add_filter( 'parse_query', 'agents_posts_filter' );
function agents_posts_filter( $query ){
    global $pagenow;
    $type = 'post';
    if (isset($_GET['post_type'])) {
        $type = $_GET['post_type'];
    }
    if ( 'properties' == $type && is_admin() && $pagenow=='edit.php' && isset($_GET['ADMIN_FILTER_FIELD_VALUE']) && $_GET['ADMIN_FILTER_FIELD_VALUE'] != '') {
        $query->query_vars['meta_key'] = 'select-agent-value';
        $query->query_vars['meta_value'] = $_GET['ADMIN_FILTER_FIELD_VALUE'];
    }
}

add_action('restrict_manage_posts', 'filter_post_type_by_agent');
function filter_post_type_by_agent(){
    global $pagenow;
    $type = 'post';
    if (isset($_GET['post_type'])) {
        $type = $_GET['post_type'];
    }

    if ('properties' == $type && is_admin() && $pagenow=='edit.php') {
        ?>
        <select name="ADMIN_FILTER_FIELD_VALUE">
        <option value=""><?php _e('Filter By Agent'); ?></option>
        <?php
            $args = array(
                'post_type' => 'agents',
                'posts_per_page' => -1                      
            );

            $posts = new WP_Query($args);

            if( $posts->have_posts() ): while( $posts->have_posts() ) : $posts->the_post(); ?>

                <option value="<?php the_ID(); ?>"> <?php the_title(); ?> </option>

            <?php

            endwhile; 

            endif; 
        ?>
        </select>
        <?php
    }
}

我有什么明显的遗失吗?感谢任何人提供的任何帮助。

1 个答案:

答案 0 :(得分:3)

我认为query_vars(元键和元值)也会添加到下面的查询WP_Query帖子类型代理中。 (转储$帖子来检查meta_query) 尝试用get_posts替换WP_Query。 也许有帮助! ^^

修改

以上查询也添加到下面的查询中。所以我尝试在下面修复它。

add_action( 'pre_get_posts', 'agents_posts_filter' );
function agents_posts_filter( $query ){
    global $pagenow;
    $type = 'post';
    if (isset($_GET['post_type'])) {
        $type = $_GET['post_type'];
    }
    if ( 'post' == $type && is_admin() && $pagenow=='edit.php' && isset($_GET['abc']) && $_GET['abc'] != '' && $query->is_main_query()) {
        $query->set('meta_key', 'select-agent-value');
        $query->set('meta_value', $_GET['abc']);
    }
}