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