php facetwp过滤wp搜索表单

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php facetwp过滤wp搜索表单相关的知识,希望对你有一定的参考价值。

<?php

/** filters search form to replace the s input with your search facet - change fwp_search as needed
 ** and replace the default action with the page url of your custom search results page - change /search-results/ as needed
 ** may need adjusting if the search is already modified by another plugin or theme */

add_filter( 'get_search_form', function( $form ) {
	$form = str_replace( 'name="s"', 'name="fwp_search"', $form );
	$form = preg_replace( '/action=".*"/', 'action="/search-results/"', $form );
	return $form;
} );

以上是关于php facetwp过滤wp搜索表单的主要内容,如果未能解决你的问题,请参考以下文章

php facetwp wp工作经理

php facetwp在使用WP GDPR Compliance插件时修复主要查询

php facetwp在wp_head hook上滚动到顶部

php WP中的内置搜索表单

php WP搜索表单仅发布

php facetwp facetwp_wpdb_sql过滤器