!function(){"use strict";var t=tinymce.util.Tools.resolve("tinymce.PluginManager"),a=function(t){return/^[A-Za-z][A-Za-z0-9\-:._]*$/.test(t)},e=function(t){var e=t.selection.getNode();return"A"===e.tagName&&""===t.dom.getAttrib(e,"href")?e.id||e.name:""},i=function(t,e){var n=t.selection.getNode();"A"===n.tagName&&""===t.dom.getAttrib(n,"href")?(n.removeAttribute("name"),n.id=e,t.undoManager.add()):(t.focus(),t.selection.collapse(!0),t.execCommand("mceInsertContent",!1,t.dom.createHTML("a",{id:e})))},n=function(r){var t=e(r);r.windowManager.open({title:"Anchor",body:{type:"textbox",name:"id",size:40,label:"Id",value:t},onsubmit:function(t){var e,n,o=t.data.id;e=r,(a(n=o)?(i(e,n),0):(e.windowManager.alert("Id should start with a letter, followed only by letters, numbers, dashes, dots, colons or underscores."),1))&&t.preventDefault()}})},o=function(t){t.addCommand("mceAnchor",function(){n(t)})},r=function(o){return function(t){for(var e=0;e 0 ) { // language dropdown var select = t.find( ':input[name="inline_lang_choice"]' ); var lang = $( '#lang_' + term_id ).html(); select.val( lang ); // populates the dropdown // disable the language dropdown for default categories var default_cat = $( '#default_cat_' + term_id ).html(); if ( term_id == default_cat ) { select.prop( 'disabled', true ); } } } } ); } ); /** * Update rows of translated terms when adding / deleting a translation or when the language is modified in quick edit. * Acts on ajaxSuccess event. */ jQuery( function( $ ) { $( document ).ajaxSuccess( function( event, xhr, settings ) { function update_rows( term_id ) { // collect old translations var translations = new Array(); $( '.translation_' + term_id ).each( function() { translations.push( $( this ).parent().parent().attr( 'id' ).substring( 4 ) ); } ); var data = { action: 'pll_update_term_rows', term_id: term_id, translations: translations.join( ',' ), taxonomy: $( "input[name='taxonomy']" ).val(), post_type: $( "input[name='post_type']" ).val(), screen: $( "input[name='screen']" ).val(), _pll_nonce: $( '#_pll_nonce' ).val() }; // get the modified rows in ajax and update them $.post( ajaxurl, data, function( response ) { if ( response ) { var res = wpAjax.parseAjaxResponse( response, 'ajax-response' ); $.each( res.responses, function() { if ( 'row' == this.what ) { // data is built with a call to WP_Terms_List_Table::single_row method // which uses internally other WordPress methods which escape correctly values. // For Polylang language columns the HTML code is correctly escaped in PLL_Admin_Filters_Columns::term_column method. $( "#tag-" + this.supplemental.term_id ).replaceWith( this.data ); // phpcs:ignore WordPressVIPMinimum.JS.HTMLExecutingFunctions.replaceWith } } ); } } ); } var data = wpAjax.unserialize( settings.data ); // what were the data sent by the ajax request? if ( 'undefined' != typeof( data['action'] ) ) { switch ( data['action'] ) { // when adding a term, the new term_id is in the ajax response case 'add-tag': res = wpAjax.parseAjaxResponse( xhr.responseXML, 'ajax-response' ); $.each( res.responses, function() { if ( 'term' == this.what ) { update_rows( this.supplemental.term_id ); } } ); // and also reset translations hidden input fields $( '.htr_lang' ).val( 0 ); break; // when deleting a term case 'delete-tag': update_rows( data['tag_ID'] ); break; // in case the language is modified in quick edit and breaks translations case 'inline-save-tax': update_rows( data['tax_ID'] ); break; } } } ); } ); jQuery( function( $ ) { // translations autocomplete input box function init_translations() { $( '.tr_lang' ).each( function(){ var tr_lang = $( this ).attr( 'id' ).substring( 8 ); var td = $( this ).parent().parent().siblings( '.pll-edit-column' ); $( this ).autocomplete( { minLength: 0, source: ajaxurl + '?action=pll_terms_not_translated' + '&term_language=' + $( '#term_lang_choice' ).val() + '&term_id=' + $( "input[name='tag_ID']" ).val() + '&taxonomy=' + $( "input[name='taxonomy']" ).val() + '&translation_language=' + tr_lang + '&post_type=' + typenow + '&_pll_nonce=' + $( '#_pll_nonce' ).val(), select: function( event, ui ) { $( '#htr_lang_' + tr_lang ).val( ui.item.id ); // ui.item.link is built and come from server side and is well escaped when necessary td.html( ui.item.link ); // phpcs:ignore WordPressVIPMinimum.JS.HTMLExecutingFunctions.html }, } ); // when the input box is emptied $( this ).on( 'blur', function() { if ( ! $( this ).val() ) { $( '#htr_lang_' + tr_lang ).val( 0 ); // Value is retrieved from HTML already generated server side td.html( td.siblings( '.hidden' ).children().clone() ); // phpcs:ignore WordPressVIPMinimum.JS.HTMLExecutingFunctions.html } } ); } ); } init_translations(); // ajax for changing the term's language $( '#term_lang_choice' ).change( function() { var value = $( this ).val(); var lang = $( this ).children( 'option[value="' + value + '"]' ).attr( 'lang' ); var dir = $( '.pll-translation-column > span[lang="' + lang + '"]' ).attr( 'dir' ); var data = { action: 'term_lang_choice', lang: value, from_tag: $( "input[name='from_tag']" ).val(), term_id: $( "input[name='tag_ID']" ).val(), taxonomy: $( "input[name='taxonomy']" ).val(), post_type: typenow, _pll_nonce: $( '#_pll_nonce' ).val() }; $.post( ajaxurl, data, function( response ) { var res = wpAjax.parseAjaxResponse( response, 'ajax-response' ); $.each( res.responses, function() { switch ( this.what ) { case 'translations': // translations fields // Data is built and come from server side and is well escaped when necessary $( "#term-translations" ).html( this.data ); // phpcs:ignore WordPressVIPMinimum.JS.HTMLExecutingFunctions.html init_translations(); break; case 'parent': // parent dropdown list for hierarchical taxonomies // data correctly escaped in PLL_Admin_Filters_Term::term_lang_choice method which uses wp_dropdown_categories function. $( '#parent' ).replaceWith( this.data ); // phpcs:ignore WordPressVIPMinimum.JS.HTMLExecutingFunctions.replaceWith break; case 'tag_cloud': // popular items // data correctly escaped in PLL_Admin_Filters_Term::term_lang_choice method which uses wp_tag_cloud and wp_generate_tag_cloud functions. $( '.tagcloud' ).replaceWith( this.data ); // phpcs:ignore WordPressVIPMinimum.JS.HTMLExecutingFunctions.replaceWith break; case 'flag': // flag in front of the select dropdown // Data is built and come from server side and is well escaped when necessary $( '.pll-select-flag' ).html( this.data ); // phpcs:ignore WordPressVIPMinimum.JS.HTMLExecutingFunctions.html break; } } ); // Modifies the text direction $( 'body' ).removeClass( 'pll-dir-rtl' ).removeClass( 'pll-dir-ltr' ).addClass( 'pll-dir-' + dir ); } ); } ); } ); 'use strict';(function(d){"object"==typeof exports&&"object"==typeof module?d(require("../../lib/codemirror"),require("./searchcursor"),require("../scroll/annotatescrollbar")):"function"==typeof define&&define.amd?define(["../../lib/codemirror","./searchcursor","../scroll/annotatescrollbar"],d):d(CodeMirror)})(function(d){function g(a,c,b,e){this.cm=a;this.options=e;var f={listenForChanges:!1},d;for(d in e)f[d]=e[d];f.className||(f.className="CodeMirror-search-match");this.annotation=a.annotateScrollbar(f); this.query=c;this.caseFold=b;this.gap={from:a.firstLine(),to:a.lastLine()+1};this.matches=[];this.update=null;this.findMatches();this.annotation.update(this.matches);var g=this;a.on("change",this.changeHandler=function(a,b){g.onChange(b)})}function h(a,c,b){return a<=c?a:Math.max(c,a+b)}d.defineExtension("showMatchesOnScrollbar",function(a,c,b){"string"==typeof b&&(b={className:b});b||(b={});return new g(this,a,c,b)});g.prototype.findMatches=function(){if(this.gap){for(var a=0;a=this.gap.to)break;c.to.line>=this.gap.from&&this.matches.splice(a--,1)}for(var b=this.cm.getSearchCursor(this.query,d.Pos(this.gap.from,0),this.caseFold),e=this.options&&this.options.maxMatches||1E3;b.findNext();){c={from:b.from(),to:b.to()};if(c.from.line>=this.gap.to)break;this.matches.splice(a++,0,c);if(this.matches.length>e)break}this.gap=null}};g.prototype.onChange=function(a){var c=a.from.line,b=d.changeEnd(a).line,e=b-a.to.line;this.gap?(this.gap.from=Math.min(h(this.gap.from, c,e),a.from.line),this.gap.to=Math.max(h(this.gap.to,c,e),a.from.line)):this.gap={from:a.from.line,to:b+1};if(e)for(a=0;aHimalaya \u2013 S\u1ea3n xu\u1ea5t v\u00e0 cung c\u1ea5p c\u00e1c lo\u1ea1i b\u1ebfp x\u00e0o c\u00f4ng nghi\u1ec7p, trong \u0111\u00f3 b\u1ebfp x\u00e0o \u0111\u00f4i c\u00f4ng nghi\u1ec7p \u0111\u01b0\u1ee3c kh\u00e1ch l\u1ef1a ch\u1ecdn v\u00e0 s\u1eed d\u1ee5ng nhi\u1ec1u trong c\u00e1c nh\u00e0 h\u00e0ng, nh\u00e0 m\u00e1y, tr\u01b0\u1eddng h\u1ecdc.<\/h2>\n

C\u00f4ng d\u1ee5ng c\u1ee7a b\u1ebfp x\u00e0o \u0111\u00f4i l\u00e0 d\u00f9ng \u0111\u1ec3 x\u00e0o c\u00e1c m\u00f3n \u0103n nhanh trong c\u00e1c khu nh\u00e0 b\u1ebfp \u0103n t\u1eadp th\u1ec3 trong nh\u00e0 h\u00e0ng, nh\u00e0 m\u00e1y, tr\u01b0\u1eddng h\u1ecdc. B\u1ebfp x\u00e0o \u0111\u00f4i c\u00f4ng nghi\u1ec7p <\/strong>c\u00f3 c\u00f4ng su\u1ea5t cao v\u1edbi ng\u1ecdn l\u1eeda to v\u00e0 m\u1ea1nh, ph\u00f9 h\u1ee3p cho vi\u1ec7c ch\u1ebf bi\u1ebfn c\u00e1c m\u00f3n \u0103n ki\u1ec3u ph\u01b0\u01a1ng \u0110\u00f4ng, v\u1edbi m\u00f3n x\u00e0o l\u1eeda to, m\u00f3n chi\u00ean\u2026 tr\u1edf n\u00ean d\u1ec5 d\u00e0ng h\u01a1n. \u0110\u1eb7c bi\u1ec7t, khi s\u1eed d\u1ee5ng v\u1edbi ng\u1ecdn l\u1eeda l\u1edbn nh\u01b0 th\u1ebf nh\u01b0ng b\u1ebfp l\u1ea1i kh\u00f4ng h\u1ec1 ti\u00eau t\u1ed1n gas l\u00e0 bao, ch\u1ec9 t\u1eeb 1,3kg\/h.<\/p>\n

Xem nhi\u1ec1u nh\u1ea5t:<\/span>
\n<\/strong><\/em>\u21d2\u00a0B\u1ebfp \u00c1 2 h\u1ecdng \u0111\u1ea5t c\u00f3 qu\u1ea1t th\u1ed5i 2 b\u1ea7u n\u01b0\u1edbc<\/a><\/span>
\n\u21d2\u00a0
B\u1ebfp \u00c1 2 h\u1ecdng kh\u00f2 ki\u1ec1ng gang \u0111\u00fac<\/a><\/span>
\n\u21d2\u00a0
B\u1ebfp \u00c1 3 h\u1ecdng kh\u00f2<\/a><\/span>
\n\u21d2\u00a0
B\u1ebfp \u00c1 \u0111\u00f4i ki\u1ec1ng gang \u0111\u00fac<\/a><\/span>
\n\u21d2\u00a0
B\u1ebfp \u00c1 4 h\u1ecdng c\u00f4ng nghi\u1ec7p<\/a><\/span><\/p>\n

\"B\u1ebfp<\/p>\n

Xem th\u00eam s\u1ea3n ph\u1ea9m: b\u1ebfp x\u00e0o 3 h\u1ecdng c\u00f4ng nghi\u1ec7p<\/a><\/p>\n

Th\u00f4ng s\u1ed1 k\u1ef9 thu\u1eadt<\/h2>\n

\u2013 S\u1ea3n xu\u1ea5t: Himalaya<\/p>\n

\u2013 K\u00edch th\u01b0\u1edbc: 1500x800x800\/1150(mm)<\/p>\n

\u2013 B\u1ed9 \u0111\u1ed1t: 2 h\u1ecdng<\/p>\n

\u2013 C\u00f4ng su\u1ea5t: 2×13.000Kcal\/h<\/p>\n

\u2013 \u00c1p su\u1ea5t gas: 500mbar<\/p>\n

\u2013 4 Ch\u00e2n tr\u00f2n D50 c\u00f3 \u0111i\u1ec1u ch\u1ec9nh chi\u1ec1u cao<\/p>\n

\u2013 M\u1eb7t b\u1ebfp x\u00e0o \u0111\u00f4i b\u1eb1ng inox, \u0111\u1ed9 d\u00e0y 1.0mm<\/p>\n

\u2013 C\u00f3 h\u1ec7 th\u1ed1ng l\u00e0m m\u00e1t m\u1eb7t b\u1ebfp v\u00e0 r\u00e3nh tho\u00e1t n\u01b0\u1edbc tr\u00ean b\u1ec1 m\u1eb7t<\/p>\n

\u2013 Van gas \u0111\u00e1nh l\u1eeda manheto<\/p>\n

C\u1ea5u t\u1ea1o c\u1ee7a b\u1ebfp x\u00e0o \u0111\u00f4i c\u00f4ng nghi\u1ec7p<\/h2>\n

B\u1ebfp x\u00e0o \u0111\u00f4i c\u00f4ng nghi\u1ec7p \u0111\u01b0\u1ee3c c\u1ea5u t\u1ea1o b\u1edfi c\u00e1c b\u1ed9 ph\u1eadn sau:<\/p>\n

B\u1ed9 ph\u1eadn b\u00e0n inox<\/strong><\/h3>\n

B\u00e0n inox \u0111\u01b0\u1ee3c l\u00e0m t\u1eeb inox 304 nh\u1eadp kh\u1ea9u, c\u00e1c chi ti\u1ebft \u0111\u01b0\u1ee3c c\u1eaft b\u1eb1ng m\u00e1y th\u1ee7y l\u1ef1c, h\u00e0n b\u1eb1ng kh\u00ed Agon ch\u1ed1ng han g\u1ec9, \u0111\u1ed9 b\u1ea7n cao v\u00e0 \u00edt b\u1ecb ch\u1ecbu \u1ea3nh h\u01b0\u1edfng c\u1ee7a nhi\u1ec7t \u0111\u1ed9 n\u1ea5u. B\u00e0n c\u00f2n c\u00f3 t\u1ea5m ch\u1eafn tr\u00ean khi x\u00e0o n\u00ean d\u1ea7u m\u1ee1 sx kh\u00f4ng b\u1ecb b\u1eafn v\u00e0o t\u01b0\u1eddng n\u1ebfu nh\u01b0 v\u1ecb tr\u00ed \u0111\u1eb7t b\u1ebfp l\u00e0 s\u00e1t t\u01b0\u1eddng.<\/p>\n

Khi x\u00e0o n\u1ea5u th\u1ee9c \u0103n v\u1edbi s\u1ed1 l\u01b0\u1ee3ng l\u1edbn nh\u01b0 trong c\u00e1c nh\u00e0 h\u00e0ng, b\u1ebfp c\u00f4ng nghi\u1ec7p, ng\u01b0\u1eddi \u0111\u1ea7u b\u1ebfp lu\u00f4n ph\u1ea3i s\u00f3c ch\u1ea3o \u0111\u1ec3 \u0111\u1ea3o \u0111\u1ec1u th\u1ee9c \u0103n. V\u00ec v\u1eady, ki\u1ec1ng b\u1ebfp l\u00e0m ch\u1eafc ch\u1eafn \u0111\u1ec3 ch\u1ecbu \u0111\u01b0\u1ee3c s\u1ee9c n\u1eb7ng c\u1ee7a ch\u1ea3o.<\/p>\n

\"B\u00e0n<\/p>\n

B\u1ed9 ph\u1eadn ch\u00e2n b\u1ebfp<\/h3>\n

Ch\u00e2n b\u1ebfp g\u1ed3m 4 ch\u00e2n tr\u00f2n D50 c\u00f3 \u0111i\u1ec1u ch\u1ec9nh chi\u1ec1u cao. C\u00e1c n\u1ed3i d\u00f9ng \u0111\u1ec3 x\u00e0o th\u01b0\u1eddng n\u00f4ng h\u01a1n c\u00e1c lo\u1ea1i n\u1ed3i h\u1ea7m n\u00ean ch\u00e2n b\u00e0n \u0111\u01b0\u1ee3c l\u00e0m cao h\u01a1n c\u00e1c lo\u1ea1i b\u1ebfp h\u1ea7m c\u00f4ng nghi\u1ec7p \u0111\u1ec3 v\u1eeba t\u1ea7m v\u1edbi nh\u1eefng \u0111\u1ea7u b\u1ebfp Vi\u1ec7t.<\/p>\n

B\u1ed9 ph\u1eadn h\u1ecdng b\u1ebfp<\/strong><\/h3>\n

B\u1ed9 \u0111\u1ed1t 7B, ki\u1ec1ng b\u1eb1ng gang \u0111\u00fac nguy\u00ean kh\u1ed1i tr\u1ecdng l\u01b0\u1ee3ng l\u00ean t\u1edbi 20kg, ch\u1ecbu nhi\u1ec7t \u0111\u1ed9 cao, c\u00f4ng su\u1ea5t gas 500mbar, ti\u1ebft ki\u1ec7m gas, s\u1eed d\u1ee5ng h\u1ecdng \u0111i\u1ebfu c\u1ed5 vu\u00f4ng b\u1eb1ng gang n\u00ean c\u00f3 \u0111\u1ed9 b\u1ec1n cao, kh\u00f4ng h\u01b0 \u0111\u00e1nh l\u1eeda, v\u00e0 kh\u00f4ng g\u00e2y \u00e1m kh\u00f3i \u0111en v\u00e0o ch\u1ea3o nh\u01b0 m\u1ed9t s\u1ed1 lo\u1ea1i b\u1ebfp gas c\u00f4ng nghi\u1ec7p kh\u00e1c.<\/p>\n

\"B\u1ebfp<\/p>\n

B\u1ed9 ph\u1eadn ki\u1ec1ng b\u1ebfp<\/strong><\/h3>\n

Ki\u1ec1ng b\u1eb1ng gang \u0111\u00fac nguy\u00ean kh\u1ed1i<\/p>\n

\u0110\u00e1nh l\u1eeda b\u1eb1ng b\u1ed9 \u0111\u1ed1t Manheto<\/p>\n

\"Ki\u1ec1ng<\/p>\n

\u01afu \u0111i\u1ec3m v\u1ec1 b\u1ebfp x\u00e0o c\u00f4ng nghi\u1ec7p 2 h\u1ecdng<\/h2>\n

+ \u0110\u01b0\u1ee3c s\u1eed d\u1ee5ng ph\u1ed5 bi\u1ebfn t\u1ea1i c\u00e1c nh\u00e0 b\u1ebfp: B\u1ebfp \u0103n t\u1eadp th\u1ec3, b\u1ebfp \u0103n nh\u00e0 m\u00e1y, khu c\u00f4ng nghi\u1ec7p, b\u1ebfp nh\u00e0 h\u00e0ng, kh\u00e1ch s\u1ea1n, b\u1ebfp tr\u01b0\u1eddng h\u1ecdc<\/p>\n

+ D\u00f9ng \u0111\u1ec3 x\u00e0o n\u1ea5u th\u1ee9c \u0103n theo phong c\u00e1ch \u00c1 \u0110\u00f4ng<\/p>\n

+ Nhi\u00ean li\u00ean s\u1eed d\u1ee5ng l\u00e0 gas<\/p>\n

+ \u0110\u01b0\u1ee3c s\u1ea3n xu\u1ea5t b\u1eb1ng v\u1eadt li\u1ec7u inox cao c\u1ea5p c\u00f3 \u0111\u1ed9 b\u1ec1n cao, thi\u1ebft k\u1ebf ki\u1ec3u d\u00e1ng hi\u1ec7n \u0111\u1ea1i, \u0111\u1eb9p m\u1eaft t\u1ea1o n\u00ean kh\u00f4ng gian \u0111\u1eb9p trong khu nh\u00e0 b\u1ebfp.<\/p>\n

+ \u0110\u01b0\u1eddng \u1ed1ng d\u1eabn gas trong b\u1ebfp \u0111\u01b0\u1ee3c thi\u1ebft k\u1ebf b\u1eb1ng \u1ed1ng \u0111\u1ed3ng v\u00e0 inox ho\u00e0n to\u00e0n k\u00edn n\u00ean \u0111\u1ea3m b\u1ea3o an to\u00e0n cho ng\u01b0\u1eddi s\u1eed d\u1ee5ng m\u00e0 kh\u00f4ng lo hi\u1ec7n t\u01b0\u1ee3ng r\u00f2 r\u1ec9 gas ra b\u00ean ngo\u00e0i.<\/p>\n

H\u01b0\u1edbng d\u1eabn c\u00e1ch l\u1eafp \u0111\u1eb7t b\u1ebfp x\u00e0o \u0111\u00f4i c\u00f4ng nghi\u1ec7p<\/h2>\n

+ L\u1ef1a ch\u1ecdn n\u01a1i \u0111\u1eb7t b\u00e9p h\u1ee3p l\u00fd \u0111\u1ebf thu\u1eadn ti\u1ec7n cho c\u00f4ng vi\u1ec7c x\u00e0o n\u1ea5u, ch\u1ebf bi\u1ebfn m\u00f3n \u0103n. N\u01a1i \u0111\u1eb7t b\u1ebfp n\u00ean tr\u00e1nh xa c\u00e1c v\u1eadt d\u1ee5ng d\u1ec5 b\u1eaft l\u1eeda<\/p>\n

+ L\u1eafp \u0111\u1eb7t h\u1ec7 th\u1ed1ng gas v\u00e0 \u0111\u01b0\u1eddng d\u1eabn an to\u00e0n, ti\u1ebft ki\u1ec7m tu\u00e2n th\u1ee7 \u0111\u00fang c\u00e1c ti\u00eau chu\u1ea9n v\u1ec1 ph\u00f2ng ch\u00e1y ch\u1eefa ch\u00e1y<\/p>\n

+ Ki\u1ec3m tra \u0111\u01b0\u1eddng d\u1eabn gas \u0111\u1ec3 ch\u1eafc ch\u1eafn r\u1eb1ng ch\u00fang kh\u00f4ng b\u1ecb r\u00f2 r\u1ec9 gas<\/p>\n

+ Thi\u1ebft k\u1ebf h\u1ec7 th\u1ed1ng l\u1ecdc d\u1ea7u m\u1ee1 trong ph\u00f2ng b\u1ebfp \u0111\u1ec3 \u0111\u1ea3m b\u1ea3o c\u00e1c y\u00eau c\u1ea7u v\u1ec1 an to\u00e0n v\u1ec7 sinh th\u1ef1c ph\u1ea9m<\/p>\n

+ Sau khi \u0111\u00e3 t\u00ecm \u0111\u01b0\u1ee3c v\u1ecb tr\u00ed th\u00edch h\u1ee3p \u0111\u1ec3 \u0111\u1eb7t b\u1ebfp, th\u00ec b\u1ea1n s\u1ebd \u0111\u1eb7t b\u1ebfp sao cho 4 ch\u00e2n b\u1eb1ng ph\u1eb3ng, kh\u00f4ng b\u1ecb c\u1eadp k\u00eanh. N\u1ebfu \u0111\u1eb7t b\u1ebfp c\u1eadp k\u00eanh th\u00ec b\u1ebfp r\u1ea5t d\u1ec5 b\u1ecb \u0111\u1ed5 trong qu\u00e1 tr\u00ecnh x\u00e0o hay chi\u00ean th\u1ee9c \u0103n.<\/p>\n

+ Khi x\u00e0o n\u1ea5u xong th\u00ec c\u1ea7n ph\u1ea3i t\u1eaft b\u1ebfp, ki\u1ec3m tra ng\u1ecdn l\u1eeda \u0111\u00e3 \u0111\u01b0\u1ee3c t\u1eaft ho\u00e0n to\u00e0n ch\u01b0a v\u00e0 kh\u00f3a gas sau m\u1ed7i l\u1ea7n s\u1eed d\u1ee5ng \u0111\u1ec3 \u0111\u1ea3m b\u1ea3o an to\u00e0n.<\/p>\n

\"Ch\u1ea3o<\/p>\n

Ch\u1ea3o d\u00f9ng cho x\u00e0o b\u1ebfp \u0111\u00f4i c\u00f4ng nghi\u1ec7p<\/h2>\n

Ch\u1ea3o x\u00e0o b\u1ebfp \u0111\u00f4i c\u00f4ng nghi\u1ec7p l\u00e0 m\u1ed9t d\u1ee5ng c\u1ee5 kh\u00f4ng th\u1ec3 thi\u1ebfu trong c\u00e1c khu nh\u00e0 b\u1ebfp \u0103n t\u1eadp th\u1ec3, ch\u1ea3o v\u00e0 b\u1ebfp l\u00e0 hai m\u00f3n \u0111\u1ed3 chuy\u00ean d\u1ee5ng lu\u00f4n \u0111i \u0111\u00f4i v\u1edbi nhau. Ch\u00fang g\u1eafn b\u00f3 v\u1edbi nhau, v\u00ec \u0111\u00e2y l\u00e0 hai d\u1ee5ng c\u1ee5 c\u00f3 ch\u1ee9c n\u0103ng t\u01b0\u01a1ng tr\u1ee3 l\u1eabn nhau. N\u1ebfu nh\u01b0 b\u1ebfp x\u00e0o c\u00f4ng nghi\u1ec7p cung c\u1ea5p ng\u1ecdn l\u1eeda c\u00f4ng xu\u1ea5t l\u1edbn \u0111\u1ecf r\u1ef1c, th\u00ec ch\u1ea3o x\u00e0o l\u1ea1i l\u00e0 n\u01a1i ch\u1ee9a \u0111\u1ef1ng t\u1ea5t c\u1ea3 c\u00e1c nguy\u00ean li\u1ec7u \u0111\u1ec3 ch\u1ebf bi\u1ebfn th\u1ee9c \u0103n. Ch\u1ea3o x\u00e0o c\u00f4ng nghi\u1ec7p \u0111\u01b0\u01a1c s\u1ea3n xu\u1ea5t v\u1edbi ch\u1ea5t li\u1ec7u nh\u00f4m d\u00e0y d\u1eb7n, l\u00f2ng ch\u1ea3o s\u00e2u, mi\u1ec7ng r\u1ed9ng v\u00e0 \u0111\u1ea7y \u0111\u1ee7 k\u00edch th\u01b0\u1edbc cho qu\u00fd kh\u00e1ch tho\u1ea3i m\u00e1i l\u1ef1a ch\u1ecdn.<\/p>\n

L\u01b0u \u00fd khi d\u00f9ng b\u1ebfp x\u00e0o \u0111\u00f4i c\u00f4ng nghi\u1ec7p<\/h3>\n

+ S\u1eed d\u1ee5ng b\u1ebfp x\u00e0o \u0111\u00f4i c\u00f4ng nghi\u1ec7p \u0111\u00fang c\u00e1ch b\u1eb1ng c\u00e1ch \u0111i\u1ec1u ch\u1ec9nh ng\u1ecdn l\u1eeda theo t\u1eebng m\u00f3n \u0103n<\/p>\n

+ V\u1ec7 sinh lau d\u1ecdn m\u1eb7t b\u1ebfp \u0111\u1ec3 tr\u00e1nh b\u00e1n th\u1ee9c \u0103n tr\u00ean b\u1ec1 m\u1eb7t<\/p>\n

+ Qu\u00e1 tr\u00ecnh x\u00e0o n\u1ea5u ph\u1ea3i ch\u00fa \u00fd kh\u00f4ng \u0111\u1ec3 th\u1ee9c \u0103n \u0111\u1ea3o ra m\u1eb7t b\u1ebfp<\/p>\n

+ Kh\u00f4ng \u0111\u1ec3 b\u1ebfp ti\u1ebfp x\u00fac v\u1edbi nh\u1eefng ch\u1ea5t g\u00e2y oxy h\u00f3a nh\u01b0 c\u00e1c ch\u1ea5t \u0103n m\u00f2n<\/p>\n

+ H\u1ea1n ch\u1ebf vi\u1ec7c va \u0111\u1eadp b\u00f3p m\u00e9o d\u1eabn \u0111\u1ebfn t\u00ecnh tr\u1ea1ng tr\u1ea7y x\u01b0\u1edbc inox<\/p>\n

\u0110\u1ecba ch\u1ec9 mua b\u1ebfp x\u00e0o \u0111\u00f4i c\u00f4ng nghi\u1ec7p uy t\u00edn<\/h2>\n

Himalaya<\/strong> l\u00e0 m\u1ed9t trong nh\u1eefng \u0111\u01a1n v\u1ecb s\u1ea3n xu\u1ea5t c\u00e1c lo\u1ea1i b\u1ebfp x\u00e0o c\u00f4ng nghi\u1ec7p, trong \u0111\u00f3 c\u00f3 b\u1ebfp x\u00e0o \u0111\u00f4i<\/a> c\u00f3 gi\u00e1 t\u1ed1t nh\u1ea5t hi\u1ec7n nay. C\u00e1c thi\u1ebft b\u1ecb nh\u00e0 b\u1ebfp c\u1ee7a Himalaya<\/strong> \u0111\u01b0\u1ee3c th\u1ef1c hi\u1ec7n m\u1ed9t c\u00e1ch c\u1ea9n th\u1eadn, t\u1ec9 m\u1ec9 v\u00e0 t\u1ed1i \u01b0u nh\u1ea5t b\u1eb1ng tay ngh\u1ec1 c\u1ee7a \u0111\u1ed9i ng\u0169 th\u1ee3 l\u00e2u n\u0103m. Himalaya l\u00e0 m\u1ed9t trong nh\u1eefng \u0111\u1ecba ch\u1ec9 b\u1ea1n ho\u00e0n to\u00e0n c\u00f3 th\u1ec3 y\u00ean t\u00e2m mua \u0111\u01b0\u1ee3c s\u1ea3n ph\u1ea9m b\u1ebfp x\u00e0o c\u00f4ng nghi\u1ec7p<\/strong> uy t\u00edn v\u00e0 gi\u00e1 r\u1ebb nh\u1ea5t. Th\u00eam v\u00e0o \u0111\u00f3 ch\u00ednh s\u00e1ch h\u1ed7 tr\u1ee3 v\u1eadn chuy\u1ec3n v\u00e0 l\u1eafp \u0111\u1eb7t s\u1ea3n ph\u1ea9m m\u1ed9t c\u00e1ch nhanh ch\u00f3ng v\u00e0 s\u1ea1ch s\u1ebd.<\/p>\n

\"Th\u01b0\u01a1ng<\/p>\n

Li\u00ean h\u1ec7 mua\u00a0b\u1ebfp \u00c1 c\u00f4ng nghi\u1ec7p<\/a>\u00a0Himalaya<\/h3>\n

M\u1ecdi th\u1eafc m\u1eafc b\u1ea1n c\u00f3 th\u1ec3 li\u00ean h\u1ec7 v\u1edbi Himalaya \u0111\u1ec3 nh\u1eadn t\u01b0 v\u1ea5n tr\u1ef1c ti\u1ebfp ho\u1eb7c t\u00ecm hi\u1ec3u th\u00f4ng qua:<\/p>\n

C\u00d4NG TY C\u1ed4 PH\u1ea6N INOX HIMALAYA<\/strong><\/p>\n

\u0110\u1ecba ch\u1ec9:<\/strong>\u00a0S\u1ed1 16, ng\u00e1ch 6\/120, Ph\u1ed1 Mi\u00eau Nha, Ph\u01b0\u1eddng T\u00e2y M\u1ed7, Qu\u1eadn Nam T\u1eeb Li\u00eam, TP H\u00e0 N\u1ed9i.<\/p>\n

Nh\u00e0 m\u00e1y s\u1ea3n xu\u1ea5t:<\/strong>\u00a0CCN V\u00e2n C\u00f4n, X\u00e3 V\u00e2n C\u00f4n, H. Ho\u00e0i \u0110\u1ee9c, TP H\u00e0 N\u1ed9i.<\/p>\n

\u0110i\u1ec7n tho\u1ea1i:<\/strong>\u00a00246 296 11 44<\/p>\n

Hotline:<\/strong>\u00a00912 546 936<\/p>\n

Website:\u00a0<\/strong>https:\/\/inoxhimalaya.vn<\/a><\/p>\n

https:\/\/www.inoxhimalaya.com.vn<\/a>\u00a0|\u00a0https:\/\/bepcongnghiephimalaya.vn<\/a><\/p>\n","protected":false},"excerpt":{"rendered":"

\u2013 S\u1ea3n xu\u1ea5t: Himalaya<\/p>\n

\u2013 K\u00edch th\u01b0\u1edbc: 1500x800x800\/1150(mm)<\/p>\n

\u2013 B\u1ed9 \u0111\u1ed1t: 2 h\u1ecdng<\/p>\n

\u2013 C\u00f4ng su\u1ea5t: 2×13.000Kcal\/h<\/p>\n

\u2013 \u00c1p su\u1ea5t gas: 500mbar<\/p>\n

\u2013 4 Ch\u00e2n tr\u00f2n D50 c\u00f3 \u0111i\u1ec1u ch\u1ec9nh chi\u1ec1u cao<\/p>\n

\u2013 M\u1eb7t b\u1ebfp x\u00e0o \u0111\u00f4i b\u1eb1ng inox, \u0111\u1ed9 d\u00e0y 1.0mm<\/p>\n

\u2013 C\u00f3 h\u1ec7 th\u1ed1ng l\u00e0m m\u00e1t m\u1eb7t b\u1ebfp v\u00e0 r\u00e3nh tho\u00e1t n\u01b0\u1edbc tr\u00ean b\u1ec1 m\u1eb7t<\/p>\n

\u2013 Van gas \u0111\u00e1nh l\u1eeda manheto<\/p>\n","protected":false},"featured_media":4895,"comment_status":"open","ping_status":"closed","template":"","meta":[],"product_cat":[22,94],"product_tag":[764,548,763],"acf":[],"yoast_head":"\nB\u1ebfp x\u00e0o \u0111\u00f4i c\u00f4ng nghi\u1ec7p - Thi\u1ebft b\u1ecb b\u1ebfp \u00e1 c\u00f4ng nghi\u1ec7p Himalaya<\/title>\n<meta name=\"description\" content=\"Himalaya \u2013 S\u1ea3n xu\u1ea5t v\u00e0 cung c\u1ea5p b\u1ebfp x\u00e0o \u0111\u00f4i c\u00f4ng nghi\u1ec7p, trong \u0111\u00f3 b\u1ebfp x\u00e0o gas c\u00f4ng nghi\u1ec7p \u0111\u01b0\u1ee3c kh\u00e1ch l\u1ef1a ch\u1ecdn v\u00e0 s\u1eed d\u1ee5ng trong c\u00e1c nh\u00e0 h\u00e0ng.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.inoxhimalaya.com.vn\/bep-xao-doi-cong-nghiep-himalaya\/\" \/>\n<meta property=\"og:locale\" content=\"vi_VN\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"B\u1ebfp x\u00e0o \u0111\u00f4i c\u00f4ng nghi\u1ec7p - Thi\u1ebft b\u1ecb b\u1ebfp \u00e1 c\u00f4ng nghi\u1ec7p Himalaya\" \/>\n<meta property=\"og:description\" content=\"Himalaya \u2013 S\u1ea3n xu\u1ea5t v\u00e0 cung c\u1ea5p b\u1ebfp x\u00e0o \u0111\u00f4i c\u00f4ng nghi\u1ec7p, trong \u0111\u00f3 b\u1ebfp x\u00e0o gas c\u00f4ng nghi\u1ec7p \u0111\u01b0\u1ee3c kh\u00e1ch l\u1ef1a ch\u1ecdn v\u00e0 s\u1eed d\u1ee5ng trong c\u00e1c nh\u00e0 h\u00e0ng.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.inoxhimalaya.com.vn\/bep-xao-doi-cong-nghiep-himalaya\/\" \/>\n<meta property=\"og:site_name\" content=\"Thi\u1ebft b\u1ecb b\u1ebfp c\u00f4ng nghi\u1ec7p, b\u1ebfp nh\u00e0 h\u00e0ng Inox Himalaya\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/bepcongnghiephimalaya.vn\" \/>\n<meta property=\"article:modified_time\" content=\"2023-11-14T04:43:46+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.inoxhimalaya.com.vn\/wp-content\/uploads\/2021\/09\/bep-xao-doi-cong-nghiep-himalaya-01.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"960\" \/>\n\t<meta property=\"og:image:height\" content=\"1368\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"\u01af\u1edbc t\u00ednh th\u1eddi gian \u0111\u1ecdc\" \/>\n\t<meta name=\"twitter:data1\" content=\"9 ph\u00fat\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.inoxhimalaya.com.vn\/bep-xao-doi-cong-nghiep-himalaya\/\",\"url\":\"https:\/\/www.inoxhimalaya.com.vn\/bep-xao-doi-cong-nghiep-himalaya\/\",\"name\":\"B\u1ebfp x\u00e0o \u0111\u00f4i c\u00f4ng nghi\u1ec7p - Thi\u1ebft b\u1ecb b\u1ebfp \u00e1 c\u00f4ng nghi\u1ec7p Himalaya\",\"isPartOf\":{\"@id\":\"https:\/\/www.inoxhimalaya.com.vn\/#website\"},\"datePublished\":\"2021-09-11T15:43:18+00:00\",\"dateModified\":\"2023-11-14T04:43:46+00:00\",\"description\":\"Himalaya \u2013 S\u1ea3n xu\u1ea5t v\u00e0 cung c\u1ea5p b\u1ebfp x\u00e0o \u0111\u00f4i c\u00f4ng nghi\u1ec7p, trong \u0111\u00f3 b\u1ebfp x\u00e0o gas c\u00f4ng nghi\u1ec7p \u0111\u01b0\u1ee3c kh\u00e1ch l\u1ef1a ch\u1ecdn v\u00e0 s\u1eed d\u1ee5ng trong c\u00e1c nh\u00e0 h\u00e0ng.\",\"breadcrumb\":{\"@id\":\"https:\/\/www.inoxhimalaya.com.vn\/bep-xao-doi-cong-nghiep-himalaya\/#breadcrumb\"},\"inLanguage\":\"vi\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.inoxhimalaya.com.vn\/bep-xao-doi-cong-nghiep-himalaya\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.inoxhimalaya.com.vn\/bep-xao-doi-cong-nghiep-himalaya\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.inoxhimalaya.com.vn\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"T\u1ed5ng s\u1ea3n ph\u1ea9m\",\"item\":\"https:\/\/www.inoxhimalaya.com.vn\/cua-hang\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"B\u1ebeP X\u00c0O \u0110\u00d4I C\u00d4NG NGHI\u1ec6P HIMALAYA\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.inoxhimalaya.com.vn\/#website\",\"url\":\"https:\/\/www.inoxhimalaya.com.vn\/\",\"name\":\"Thi\u1ebft b\u1ecb b\u1ebfp c\u00f4ng nghi\u1ec7p, b\u1ebfp nh\u00e0 h\u00e0ng Inox Himalaya\",\"description\":\"Thi\u1ebft b\u1ecb b\u1ebfp c\u00f4ng nghi\u1ec7p, b\u1ebfp nh\u00e0 h\u00e0ng Inox Himalaya\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.inoxhimalaya.com.vn\/?s={search_term_string}\"},\"query-input\":\"required name=search_term_string\"}],\"inLanguage\":\"vi\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"B\u1ebfp x\u00e0o \u0111\u00f4i c\u00f4ng nghi\u1ec7p - Thi\u1ebft b\u1ecb b\u1ebfp \u00e1 c\u00f4ng nghi\u1ec7p Himalaya","description":"Himalaya \u2013 S\u1ea3n xu\u1ea5t v\u00e0 cung c\u1ea5p b\u1ebfp x\u00e0o \u0111\u00f4i c\u00f4ng nghi\u1ec7p, trong \u0111\u00f3 b\u1ebfp x\u00e0o gas c\u00f4ng nghi\u1ec7p \u0111\u01b0\u1ee3c kh\u00e1ch l\u1ef1a ch\u1ecdn v\u00e0 s\u1eed d\u1ee5ng trong c\u00e1c nh\u00e0 h\u00e0ng.","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/www.inoxhimalaya.com.vn\/bep-xao-doi-cong-nghiep-himalaya\/","og_locale":"vi_VN","og_type":"article","og_title":"B\u1ebfp x\u00e0o \u0111\u00f4i c\u00f4ng nghi\u1ec7p - Thi\u1ebft b\u1ecb b\u1ebfp \u00e1 c\u00f4ng nghi\u1ec7p Himalaya","og_description":"Himalaya \u2013 S\u1ea3n xu\u1ea5t v\u00e0 cung c\u1ea5p b\u1ebfp x\u00e0o \u0111\u00f4i c\u00f4ng nghi\u1ec7p, trong \u0111\u00f3 b\u1ebfp x\u00e0o gas c\u00f4ng nghi\u1ec7p \u0111\u01b0\u1ee3c kh\u00e1ch l\u1ef1a ch\u1ecdn v\u00e0 s\u1eed d\u1ee5ng trong c\u00e1c nh\u00e0 h\u00e0ng.","og_url":"https:\/\/www.inoxhimalaya.com.vn\/bep-xao-doi-cong-nghiep-himalaya\/","og_site_name":"Thi\u1ebft b\u1ecb b\u1ebfp c\u00f4ng nghi\u1ec7p, b\u1ebfp nh\u00e0 h\u00e0ng Inox Himalaya","article_publisher":"https:\/\/www.facebook.com\/bepcongnghiephimalaya.vn","article_modified_time":"2023-11-14T04:43:46+00:00","og_image":[{"width":960,"height":1368,"url":"https:\/\/www.inoxhimalaya.com.vn\/wp-content\/uploads\/2021\/09\/bep-xao-doi-cong-nghiep-himalaya-01.jpg","type":"image\/jpeg"}],"twitter_card":"summary_large_image","twitter_misc":{"\u01af\u1edbc t\u00ednh th\u1eddi gian \u0111\u1ecdc":"9 ph\u00fat"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/www.inoxhimalaya.com.vn\/bep-xao-doi-cong-nghiep-himalaya\/","url":"https:\/\/www.inoxhimalaya.com.vn\/bep-xao-doi-cong-nghiep-himalaya\/","name":"B\u1ebfp x\u00e0o \u0111\u00f4i c\u00f4ng nghi\u1ec7p - Thi\u1ebft b\u1ecb b\u1ebfp \u00e1 c\u00f4ng nghi\u1ec7p Himalaya","isPartOf":{"@id":"https:\/\/www.inoxhimalaya.com.vn\/#website"},"datePublished":"2021-09-11T15:43:18+00:00","dateModified":"2023-11-14T04:43:46+00:00","description":"Himalaya \u2013 S\u1ea3n xu\u1ea5t v\u00e0 cung c\u1ea5p b\u1ebfp x\u00e0o \u0111\u00f4i c\u00f4ng nghi\u1ec7p, trong \u0111\u00f3 b\u1ebfp x\u00e0o gas c\u00f4ng nghi\u1ec7p \u0111\u01b0\u1ee3c kh\u00e1ch l\u1ef1a ch\u1ecdn v\u00e0 s\u1eed d\u1ee5ng trong c\u00e1c nh\u00e0 h\u00e0ng.","breadcrumb":{"@id":"https:\/\/www.inoxhimalaya.com.vn\/bep-xao-doi-cong-nghiep-himalaya\/#breadcrumb"},"inLanguage":"vi","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.inoxhimalaya.com.vn\/bep-xao-doi-cong-nghiep-himalaya\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/www.inoxhimalaya.com.vn\/bep-xao-doi-cong-nghiep-himalaya\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.inoxhimalaya.com.vn\/"},{"@type":"ListItem","position":2,"name":"T\u1ed5ng s\u1ea3n ph\u1ea9m","item":"https:\/\/www.inoxhimalaya.com.vn\/cua-hang\/"},{"@type":"ListItem","position":3,"name":"B\u1ebeP X\u00c0O \u0110\u00d4I C\u00d4NG NGHI\u1ec6P HIMALAYA"}]},{"@type":"WebSite","@id":"https:\/\/www.inoxhimalaya.com.vn\/#website","url":"https:\/\/www.inoxhimalaya.com.vn\/","name":"Thi\u1ebft b\u1ecb b\u1ebfp c\u00f4ng nghi\u1ec7p, b\u1ebfp nh\u00e0 h\u00e0ng Inox Himalaya","description":"Thi\u1ebft b\u1ecb b\u1ebfp c\u00f4ng nghi\u1ec7p, b\u1ebfp nh\u00e0 h\u00e0ng Inox Himalaya","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.inoxhimalaya.com.vn\/?s={search_term_string}"},"query-input":"required name=search_term_string"}],"inLanguage":"vi"}]}},"_links":{"self":[{"href":"https:\/\/www.inoxhimalaya.com.vn\/wp-json\/wp\/v2\/product\/4888"}],"collection":[{"href":"https:\/\/www.inoxhimalaya.com.vn\/wp-json\/wp\/v2\/product"}],"about":[{"href":"https:\/\/www.inoxhimalaya.com.vn\/wp-json\/wp\/v2\/types\/product"}],"replies":[{"embeddable":true,"href":"https:\/\/www.inoxhimalaya.com.vn\/wp-json\/wp\/v2\/comments?post=4888"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.inoxhimalaya.com.vn\/wp-json\/wp\/v2\/media\/4895"}],"wp:attachment":[{"href":"https:\/\/www.inoxhimalaya.com.vn\/wp-json\/wp\/v2\/media?parent=4888"}],"wp:term":[{"taxonomy":"product_cat","embeddable":true,"href":"https:\/\/www.inoxhimalaya.com.vn\/wp-json\/wp\/v2\/product_cat?post=4888"},{"taxonomy":"product_tag","embeddable":true,"href":"https:\/\/www.inoxhimalaya.com.vn\/wp-json\/wp\/v2\/product_tag?post=4888"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}