php facetwp将span添加到复选框标签

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php facetwp将span添加到复选框标签相关的知识,希望对你有一定的参考价值。

<?php

/** adds a span to checkbox labels for styling **/
add_filter( 'facetwp_facet_html', function( $html, $args ) {

	if ( 'checkboxes' == $args['facet']['type']) {

		$pattern = '/<div class="facetwp-checkbox" data-value="[^"]*">([^<]*) <span/';
		preg_match_all( $pattern, $html, $matches );

		if ( !empty($matches[1]) ) {
			foreach ( $matches[1] AS $label ) {
				$html = str_replace( '>' . $label . ' <span', '><span class="fwp_label">' . $label . '</span> <span', $html );
			}
		}
	}

	return $html;

}, 10, 2);

以上是关于php facetwp将span添加到复选框标签的主要内容,如果未能解决你的问题,请参考以下文章

php facetwp将扩展类添加到复选框

php facetwp将标签添加到类别facet

php facetwp将文本添加到选择中

php facetwp将工具提示添加到滑块

php facetwp将其他类/ id添加到布局模板

php facetwp将rel nofollow添加到寻呼机