0

我有一个名为organic 的产品自定义字段,其值为yes/no。我想在我们的过滤器中显示一个复选框,上面写着“有机”。并且当检查在 db 中搜索 yes 值时。FacetWP 中复选框的默认设置显示来自 db 的值。

如何在 FacetWP 中进行设置?

4

1 回答 1

1

这是您执行此任务的代码,不要忘记在每次更改名称后重新索引。

/**
 * reindex after adding or updating this filter
 */
add_filter( 'facetwp_index_row', function( $params, $class ) {
    if ( 'new_facet' == $params['facet_name'] ) { // change my_facet to your facet's name/slug
        if ( '1' == $params['facet_value'] ) { // be careful with 1 and 0 as values - https://www.php.net/manual/en/types.comparisons.php
            $params['facet_display_value'] = 'Organic'; // text to display in the facet choices
            }
        if ( '0' == $params['facet_value'] ) {
            $params['facet_display_value'] = 'McDonalds';
            }
    }
    return $params;
}, 10, 2 );

在此处输入图像描述

于 2021-01-13T17:31:03.207 回答