2019-09-10 11:27:33 +07:00
|
|
|
<?php
|
|
|
|
$paged = ( get_query_var( 'paged' ) ) ? get_query_var( 'paged' ) : 1;
|
|
|
|
$rowcls = apply_filters( 'opalestate_row_container_class', 'opal-row' );
|
|
|
|
|
2020-03-25 14:46:54 +07:00
|
|
|
$atts = [
|
|
|
|
'paged' => $paged,
|
|
|
|
'search_form' => $settings['search_form'],
|
|
|
|
];
|
2019-09-30 11:11:35 +07:00
|
|
|
?>
|
2020-03-25 14:46:54 +07:00
|
|
|
<?php echo opalestate_load_template_path( 'shortcodes/search-split-maps', $atts ); ?>
|