php facetwp布局构建器的条件前缀(或后缀)

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php facetwp布局构建器的条件前缀(或后缀)相关的知识,希望对你有一定的参考价值。

<?php
/** $item['source'] is the name of the custom field
 **/
add_filter( 'facetwp_builder_item_value', function( $value, $item ) {
	if ( 'lease_price' == $item['source'] && !empty( $value ) ) { // change 'lease_price' to the unique name of your field
		$value = 'Lease Price: $' . $value;
	}
	return $value;
}, 10, 2 );

以上是关于php facetwp布局构建器的条件前缀(或后缀)的主要内容,如果未能解决你的问题,请参考以下文章

php facetwp woocommerce布局构建器

php facetwp布局构建器没有结果输出

php 布局构建器中的facetwp短代码

php facetwp布局构建器woo / price

php 布局构建器中的facetwp数组处理

php facetwp更改布局构建器中的日期格式