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

Posted

tags:

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

<?php
/** adds tooltips to slider handles
 ** https://refreshless.com/nouislider/slider-options/#section-tooltips
 ** note that you need an array even if you want true for both handles
 **/

add_action( 'wp_footer', function() { ?>
    <script>
    (function($) {
        if ('object' != typeof FWP) {
            return;
        }
        FWP.hooks.addFilter('facetwp/set_options/slider', function(opts, facet) {
            if (facet.facet_name == 'price') {
                opts.tooltips = [true,true];
              return opts;
            }
        });
    })(jQuery);
    </script>
<?php }, 100 );

以上是关于php facetwp将工具提示添加到滑块的主要内容,如果未能解决你的问题,请参考以下文章

如何将自动播放添加到滑块?

为啥将“margin:0 auto”添加到滑块菜单会破坏它?

将自动播放 + 上一个和下一个按钮添加到滑块

如何将另一个图像添加到滑块的拇指或如何添加两个拇指图像?

将alt-tag添加到滑块 - Wordpress

如何在 Unity C# 中将 OnPointerDown 侦听器添加到滑块句柄? [复制]