| @@ -18,8 +18,9 @@ | ||
| 18 | 18 | // -------------------------- |
| 19 | 19 | // Layout |
| 20 | 20 | // -------------------------- |
| 21 | 21 | 'layout' => 'layout1', |
| 22 | + 'infiniteScroll' => false, | |
| 22 | 23 | |
| 23 | 24 | /* |
| 24 | 25 | ============================ |
| 25 | 26 | General Setting |
| @@ -275,8 +276,14 @@ | ||
| 275 | 276 | $attr['imgOverlayType'] = sanitize_html_class( $attr['imgOverlayType'] ); |
| 276 | 277 | $attr['popupAutoPlay'] = $attr['popupAutoPlay'] == true; |
| 277 | 278 | $attr['readMoreText'] = wp_kses( $attr['readMoreText'], ultimate_post()->ultp_allowed_html_tags() ); |
| 278 | 279 | $attr['varticalAlign'] = sanitize_html_class( $attr['varticalAlign'] ); |
| 280 | + $iscroll = ''; | |
| 281 | + $wrap_data = ''; | |
| 282 | + if ( $attr['infiniteScroll'] ) { | |
| 283 | + $iscroll = 'ultp-iscroll-active'; | |
| 284 | + include ULTP_PATH . 'blocks/template/infinite_scroll_data.php'; | |
| 285 | + } | |
| 279 | 286 | |
| 280 | 287 | if ( $recent_posts->have_posts() ) { |
| 281 | 288 | |
| 282 | 289 | // Pagination Block Html |
| @@ -281,10 +288,10 @@ | ||
| 281 | 288 | |
| 282 | 289 | // Pagination Block Html |
| 283 | 290 | include ULTP_PATH . 'blocks/template/pagination_block.php'; |
| 284 | 291 | |
| 285 | - $wraper_before .= '<div ' . ( $attr['advanceId'] ? 'id="' . $attr['advanceId'] . '" ' : '' ) . ' class="ultp-post-grid-block wp-block-ultimate-post-' . $block_name . ' ultp-block-' . $attr['blockId'] . '' . ( $attr['align'] ? ' align' . $attr['align'] : '' ) . '' . ( $attr['className'] ? ' ' . $attr['className'] : '' ) . '">'; | |
| 286 | - $wraper_before .= '<div class="ultp-block-wrapper">'; | |
| 292 | + $wraper_before .= '<div ' . ( $attr['advanceId'] ? 'id="' . $attr['advanceId'] . '" ' : '' ) . ' class="ultp-post-grid-block wp-block-ultimate-post-' . $block_name . ' ultp-block-' . $attr['blockId'] . '' . ( $attr['align'] ? ' align' . $attr['align'] : '' ) . '' . ( $attr['className'] ? ' ' . $attr['className'] : '' ) . ' ' . $iscroll . '">'; | |
| 293 | + $wraper_before .= '<div class="ultp-block-wrapper" ' . $wrap_data . '>'; | |
| 287 | 294 | |
| 288 | 295 | // Loading |
| 289 | 296 | $wraper_before .= ultimate_post()->postx_loading(); |
| 290 | 297 | |