php facetwp索引只有孙子或更深层次的术语

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php facetwp索引只有孙子或更深层次的术语相关的知识,希望对你有一定的参考价值。

<?php

/** indexes only grand child or deeper level terms **/
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 ) < 2 ) { // adjust this for different term levels as needed 
			return false;
		}
	}
	return $params;
});

以上是关于php facetwp索引只有孙子或更深层次的术语的主要内容,如果未能解决你的问题,请参考以下文章

php facetwp索引只有父母

php facetwp索引只有一种帖子类型

php facetwp woocommerce术语描述

php facetwp替换索引中的显示值

php facetwp索引新媒体

php facetwp索引一个PODS关系字段