
// === HunaHome Order API ===
add_action('rest_api_init', function() {
    register_rest_route('hunahome/v1', '/order', array(
        'methods'  => 'POST',
        'callback' => 'hunahome_handle_order',
        'permission_callback' => '__return_true',
    ));
});
function hunahome_handle_order(WP_REST_Request $request) {
    $d = $request->get_json_params();
    $name    = sanitize_text_field($d['name']    ?? '');
    $phone   = sanitize_text_field($d['phone']   ?? '');
    $email   = sanitize_email($d['email']        ?? '');
    $address = sanitize_text_field($d['address'] ?? '');
    $note    = sanitize_text_field($d['note']    ?? '');
    $payment = sanitize_text_field($d['payment'] ?? 'COD');
    $total   = '550.000đ';
    $oid     = 'hh_order_'.time().'_'.rand(1000,9999);
    update_option($oid, compact('name','phone','email','address','note','payment','total'), false);
    $headers = array('Content-Type: text/plain; charset=UTF-8');
    wp_mail('vuxnga@gmail.com', "Đơn mới: $name - $phone",
        "Họ tên: $name\nSĐT: $phone\nEmail: $email\nĐịa chỉ: $address\nGhi chú: $note\nTT: $payment\nTổng: $total", $headers);
    if ($email) {
        wp_mail($email, "Xác nhận đơn hàng Huna's Home",
            "Xin chào $name,\n\nĐơn hàng của bạn đã được tiếp nhận!\n\nSản phẩm: Combo Tóc Thảo Dược (Gội+Xả+Xịt)\nTổng: $total FREESHIP\nThanh toán: $payment\nĐịa chỉ: $address\n\nChúng tôi sẽ liên hệ trong 30 phút.\n\nHuna's Home - 0976 881 876", $headers);
    }
    return rest_ensure_response(array('success'=>true,'id'=>$oid));
}
// === End HunaHome Order API ===<?xml version="1.0" encoding="UTF-8"?><?xml-stylesheet type="text/xsl" href="//hunahome.com.vn/wp-content/plugins/wordpress-seo/css/main-sitemap.xsl"?>
<sitemapindex xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
	<sitemap>
		<loc>https://hunahome.com.vn/post-sitemap.xml</loc>
		<lastmod>2025-11-26T05:05:41+00:00</lastmod>
	</sitemap>
	<sitemap>
		<loc>https://hunahome.com.vn/page-sitemap.xml</loc>
		<lastmod>2026-06-24T11:35:00+00:00</lastmod>
	</sitemap>
	<sitemap>
		<loc>https://hunahome.com.vn/blocks-sitemap.xml</loc>
		<lastmod>2025-12-13T04:37:33+00:00</lastmod>
	</sitemap>
	<sitemap>
		<loc>https://hunahome.com.vn/product-sitemap.xml</loc>
		<lastmod>2026-06-18T15:14:22+00:00</lastmod>
	</sitemap>
	<sitemap>
		<loc>https://hunahome.com.vn/category-sitemap.xml</loc>
		<lastmod>2025-11-26T05:05:41+00:00</lastmod>
	</sitemap>
	<sitemap>
		<loc>https://hunahome.com.vn/product_brand-sitemap.xml</loc>
		<lastmod>2026-06-18T15:14:22+00:00</lastmod>
	</sitemap>
	<sitemap>
		<loc>https://hunahome.com.vn/product_cat-sitemap.xml</loc>
		<lastmod>2026-06-18T15:14:22+00:00</lastmod>
	</sitemap>
	<sitemap>
		<loc>https://hunahome.com.vn/author-sitemap.xml</loc>
		<lastmod>2026-04-01T08:05:48+00:00</lastmod>
	</sitemap>
</sitemapindex>
<!-- XML Sitemap generated by Yoast SEO -->