HEX
Server: Apache
System: Linux pdx1-shared-a2-04 6.6.104-grsec-jammy+ #3 SMP Tue Sep 16 00:28:11 UTC 2025 x86_64
User: dh_hwg2wc (6369923)
PHP: 8.1.33
Disabled: NONE
Upload Files
File: /home/dh_hwg2wc/fnaluxury.com/wp-content/plugins/houzez-theme-functionality/shortcodes/search.php
<?php
/**
 * Partners
 * Created by PhpStorm.
 * User: waqasriaz
 * Date: 07/01/16
 * Time: 7:00 PM
 */
if( !function_exists('houzez_advanced_search') ) {
    function houzez_advanced_search($atts, $content = null)
    {
        extract(shortcode_atts(array(
            'search_field' => '',
        ), $atts));

        ob_start();
        

        if(array_key_exists($search_field, houzez_search_builtIn_fields_elementor())) {
            get_template_part('template-parts/search/fields/'.$search_field);
            
        } else {

            houzez_get_custom_search_field($search_field);
            
        }
        
        
        $result = ob_get_contents();
        ob_end_clean();
        return $result;

    }

    //add_shortcode('houzez-partners', 'houzez_search');
}