php facetwp索引仅限父级和一级子级条款

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php facetwp索引仅限父级和一级子级条款相关的知识,希望对你有一定的参考价值。

<?php
/**
 ** only index parent and first level child tax terms
 ** must re-index after adding filter
 **/

add_filter( 'facetwp_index_row', function( $params, $class ) {
    if ( 'my_tax_facet' == $params['facet_name'] && $params['depth'] > 1 ) { // channge 'my_tax_facet' to the facet name being indexed
        return false;
    }
    return $params;
}, 10, 2 );

以上是关于php facetwp索引仅限父级和一级子级条款的主要内容,如果未能解决你的问题,请参考以下文章

在一个查询中保存父级和子级(子级对父级有空值引用)

删除父级和所有子级

找到堆的父级和子级的方程式背后的直觉是啥?

在 Laravel 中为父级和子级创建活动类

使用 MVC 5 向 Kendo UI 控制器添加父级和子级

php facetwp索引只是分类中的第一级孩子