| @@ -18,8 +18,9 @@ | ||
| 18 | 18 | // -------------------------- |
| 19 | 19 | // Layout |
| 20 | 20 | // -------------------------- |
| 21 | 21 | 'layout' => 'layout1', |
| 22 | + 'infiniteScroll' => false, | |
| 22 | 23 | |
| 23 | 24 | // -------------------------- |
| 24 | 25 | // Query Setting |
| 25 | 26 | // -------------------------- |
| @@ -269,15 +270,22 @@ | ||
| 269 | 270 | $attr['popupAutoPlay'] = $attr['popupAutoPlay'] == true; |
| 270 | 271 | $attr['readMoreText'] = wp_kses( $attr['readMoreText'], ultimate_post()->ultp_allowed_html_tags() ); |
| 271 | 272 | $attr['varticalAlign'] = sanitize_html_class( $attr['varticalAlign'] ); |
| 272 | 273 | |
| 274 | + $iscroll = ''; | |
| 275 | + $wrap_data = ''; | |
| 276 | + if ( $attr['infiniteScroll'] ) { | |
| 277 | + $iscroll = 'ultp-iscroll-active'; | |
| 278 | + include ULTP_PATH . 'blocks/template/infinite_scroll_data.php'; | |
| 279 | + } | |
| 280 | + | |
| 273 | 281 | if ( $recent_posts->have_posts() ) { |
| 274 | 282 | |
| 275 | 283 | // Pagination Block Html |
| 276 | 284 | include ULTP_PATH . 'blocks/template/pagination_block.php'; |
| 277 | 285 | |
| 278 | - $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'] : '' ) . '">'; | |
| 279 | - $wraper_before .= '<div class="ultp-block-wrapper">'; | |
| 286 | + $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 . '">'; | |
| 287 | + $wraper_before .= '<div class="ultp-block-wrapper" ' . $wrap_data . '>'; | |
| 280 | 288 | |
| 281 | 289 | // Loading |
| 282 | 290 | $wraper_before .= ultimate_post()->postx_loading(); |
| 283 | 291 | |