php facetwp条件滚动到顶部

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php facetwp条件滚动到顶部相关的知识,希望对你有一定的参考价值。

<?php
/** adds script to header with a conditional check to not scroll to top
 ** when the load more button has been clicked
 **/
add_action( 'wp_head', function() { ?>

    <script>
        (function($) {
            $(document).on('facetwp-refresh', function() {
                if ( FWP.is_load_more == true ) {
                    FWP.enable_scroll = false;
                } else {
                    FWP.enable_scroll = true;
                }
            });
            $(document).on('facetwp-loaded', function() {
                if ( FWP.enable_scroll == true ) {
                    $('html, body').animate({ scrollTop: 0 }, 500);
                }
            });
        })(jQuery);
    </script>

<?php } );

以上是关于php facetwp条件滚动到顶部的主要内容,如果未能解决你的问题,请参考以下文章

php 滚动到顶部

php facetwp条件滚动到仅在寻呼机上的顶部

UITableView deleterows 滚动到顶部

scss 滚动时的UI到顶部/页面到顶部按钮

当导航条滚动到顶部时固定到顶部

iOS滚动视图禁用自动滚动到顶部