Update search form

This commit is contained in:
Hoang Huu
2019-09-17 10:01:35 +07:00
parent d8e95a1dc5
commit f872b4f79a
6 changed files with 131 additions and 23 deletions

View File

@@ -0,0 +1,8 @@
<?php
$scategories = isset( $_GET['cat'] ) ? $_GET['cat'] : -1;
if ( isset( $ismultiple ) ) {
Opalestate_Taxonomy_Categories::get_multi_check_list( $scategories );
} else {
Opalestate_Taxonomy_Categories::dropdown_list();
}

View File

@@ -1,9 +1,8 @@
<?php
$stypes = isset( $_GET['types'] ) ? $_GET['types'] : -1;
if( isset($ismultiple) ) {
if ( isset( $ismultiple ) ) {
Opalestate_Taxonomy_Type::get_multi_check_list( $stypes );
} else {
Opalestate_Taxonomy_Type::dropdown_list();
}
?>