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

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php facetwp将其他类/ id添加到布局模板相关的知识,希望对你有一定的参考价值。

<?php
/** add additional classes / id to the facetwp-template div generated by a facetwp 
 ** layout template
 **/
add_filter( 'facetwp_shortcode_html', function( $output, $atts) {
	if ( $atts['template'] = 'example' ) { // replace 'example' with name of your template
    /** modify replacement as needed, make sure you keep the facetwp-template class **/
		$output = str_replace( 'class="facetwp-template"', 'id="masonry-container" class="facetwp-template small-up-1 medium-up-2 large-up-3"', $output );
	}
	return $output; 
}, 10, 2 );

以上是关于php facetwp将其他类/ id添加到布局模板的主要内容,如果未能解决你的问题,请参考以下文章

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

php 带有附件ID的布局构建器中的facetwp自定义字段

php facetwp将文本添加到选择中

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

php facetwp将标签添加到类别facet

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