php facetwp替换索引中的显示值

Posted

tags:

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

<?php

/** simple example of replacing values with new values in index
 ** rememember to reindex after adding code
 **/

add_filter( 'facetwp_index_row', function( $params ) {
	if ( 'post_type' == $params['facet_name'] ) { // 'post_type' should be replaced with your facet name
		$current_values = array( 'Posts', 'Products' ); // array of values currently being used that you want to replace
		$replace_values = array( 'Articles', 'For Sale' ); // array of values to replace with, values are in same order as above
		$params['facet_display_value'] = str_replace( $current_values, $replace_values, $params['facet_display_value'] );
	}
	return $params;
});

以上是关于php facetwp替换索引中的显示值的主要内容,如果未能解决你的问题,请参考以下文章

php facetwp索引自动完成方面的多个值

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

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

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

php facetwp用facetwp替换genesis pager

php facetwp替换日期选择器占位符文本