/* Force child theme to load its own property script */ add_action('wp_enqueue_scripts', function() { if (is_page('create-listing')) { wp_deregister_script('houzez_property'); wp_enqueue_script( 'houzez_property', get_stylesheet_directory_uri() . '/js/houzez_property.js', array('jquery','plupload','jquery-ui-sortable'), wp_get_theme('houzez-child')->get('Version'), true ); wp_localize_script('houzez_property','houzezProperty',array( 'ajaxURL'=>admin_url('admin-ajax.php') )); } }, 100); /* ✅ تحميل سكربت houzez_property من القالب الابن */ add_action('wp', function() { global $post; if (isset($post->post_name) && $post->post_name === 'create-listing') { add_action('wp_enqueue_scripts', function () { wp_deregister_script('houzez_property'); wp_enqueue_script( 'houzez_property', get_stylesheet_directory_uri() . '/js/houzez_property.js', array('jquery','plupload','jquery-ui-sortable'), wp_get_theme('houzez-child')->get('Version'), true ); wp_localize_script('houzez_property', 'houzezProperty', array( 'ajaxURL' => admin_url('admin-ajax.php') )); }, 100); } });