php facetwp flyout html过滤器

Posted

tags:

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

<?php
/** prepends your custom html before the facets output **/
add_action( 'wp_head', function() {
	?>
	<script>
	(function($) {
		$(function() {
			if ('object' != typeof FWP) {
            			return;
        		}
			FWP.hooks.addFilter('facetwp/flyout/flyout_html', function( flyout_html ) {
				var html = `
					<h2>title before filters</h2>
				`;
				return flyout_html.replace('{content}', html + '{content}');
			});
		});
	})(jQuery);
	</script>
	<?php
} );

以上是关于php facetwp flyout html过滤器的主要内容,如果未能解决你的问题,请参考以下文章

php facetwp listable html过滤器

php facetwp facetwp_wpdb_sql过滤器

php facetwp facetwp_query_args短代码模板过滤器

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

php facetwp过滤wp搜索表单

php facetwp条件过滤器