php facetwp使选择排序成收音机

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php facetwp使选择排序成收音机相关的知识,希望对你有一定的参考价值。

<?php
/**
 * filter html for sort to output radio buttons
 */
add_filter( 'facetwp_sort_html', function( $output, $params ) {
	$output = '<div class="facetwp-sort-radio">';
	foreach ( $params['sort_options'] as $key => $atts ) {
		$output .= '<input type="radio" name="sort" value="' . $key . '"> ' . $atts['label'] . '<br>';
	}
	$output .= '</div>';
	return $output;
}, 10, 2 );

/**
 * js to handle:
 * selecting the correct radio button on load
 * updating the sort when a new button is selected
 */
add_action( 'wp_head', function() {
	?>
	<script>
        (function($) {
            $(document).on('facetwp-loaded', function() {
                if ('undefined' !== typeof FWP.extras.sort ) {
                    $( '.facetwp-sort-radio input:radio[name="sort"]').filter('[value="'+FWP.extras.sort+'"]').prop("checked", true);
                }
            });
            // Sorting
            $(document).on('change', '.facetwp-sort-radio input', function() {
                FWP.extras.sort = $(this).val();
                FWP.soft_refresh = true;
                FWP.autoload();
            });
        })(jQuery);
	</script>
	<?php
}, 100 );

以上是关于php facetwp使选择排序成收音机的主要内容,如果未能解决你的问题,请参考以下文章

JS冒泡排序输入的数字不能正确排序,输入2,4,35的话,排序成2,35,4。该怎么改

php facetwp将文本添加到选择中

php facetwp选择了facetw

php facetwp检查是否选择了任何方面

php facetwp检查是否选择了任何方面

php facetwp加载后选择并刷新