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

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php facetwp索引只是分类中的第一级孩子相关的知识,希望对你有一定的参考价值。

<?php
/** index only first level children terms, no grandchildren or deeper **/
add_filter( 'facetwp_index_row', function( $params ) {
    if ( 'product_categories' == $params['facet_name'] ) { //change 'product_categories' to name of your facet
		$parents = get_ancestors( $params['term_id'], 'product_cat', 'taxonomy' ); // change 'product_cat' to name of your taxonomy
		if ( count( $parents ) !== 1 ) { // adjust comparison as needed for different child levels
			return false;
		}
	}
	return $params;
});

以上是关于php facetwp索引只是分类中的第一级孩子的主要内容,如果未能解决你的问题,请参考以下文章

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

php facetwp索引分类名称而不是slug

php facetwp索引分类名称而不是slug

php facetwp替换索引中的显示值

php facetwp索引相关帖子类型中的字段

php facetwp索引相关帖子类型中的字段