block.json
1 year ago
index.asset.php
1 month ago
index.js
1 month ago
style-index-rtl.css
1 year ago
style-index.css
1 year ago
view.php
1 year ago
view.php
18 lines
| 1 | <?php |
| 2 | |
| 3 | $query = sc_product_list_query( $block ); |
| 4 | |
| 5 | // there are less than 2 pages. |
| 6 | if ( ( $query->max_num_pages ?? 1 ) < 2 ) { |
| 7 | return; |
| 8 | } |
| 9 | |
| 10 | if ( ! $query->has_pagination ) { |
| 11 | return; |
| 12 | } |
| 13 | |
| 14 | ?> |
| 15 | <div <?php echo wp_kses_data( get_block_wrapper_attributes() ); ?>> |
| 16 | <?php echo $content; // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped ?> |
| 17 | </div> |
| 18 |