php facetwp更改自动完成按钮文本

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php facetwp更改自动完成按钮文本相关的知识,希望对你有一定的参考价值。

<?php

/**
 * replace "Update" for search button with different text
 * change 'autocomplete_facet' to the name of your facet
 * Note that this text is also translation ready and could be 
 * modified using internationalization functions as well
 */
add_filter( 'facetwp_facet_html', function( $output, $params ) {
	if ( 'autocomplete_facet' == $params['facet']['name'] ) {
		$output = str_replace( 'Update', 'Search', $output );
	}
	return $output;
}, 10, 2 );

以上是关于php facetwp更改自动完成按钮文本的主要内容,如果未能解决你的问题,请参考以下文章

php facetwp更改地图过滤按钮文本

php facetwp自动启用地图上的过滤按钮

php facetwp自动完成的完全匹配

php facetwp更改作者显示

php facetwp更改作者显示

php facetwp更改作者显示