/** * Observe how the user enters content into the comment form in order to determine whether it's a bot or not. * * Note that no actual input is being saved here, only counts and timings between events. */ ( function() { // Passive event listeners are guaranteed to never call e.preventDefault(), // but they're not supported in all browsers. Use this feature detection // to determine whether they're available for use. var supportsPassive = false; try { var opts = Object.defineProperty( {}, 'passive', { get : function() { supportsPassive = true; } } ); window.addEventListener( 'testPassive', null, opts ); window.removeEventListener( 'testPassive', null, opts ); } catch ( e ) {} function init() { var input_begin = ''; var keydowns = {}; var lastKeyup = null; var lastKeydown = null; var keypresses = []; var modifierKeys = []; var correctionKeys = []; var lastMouseup = null; var lastMousedown = null; var mouseclicks = []; var mousemoveTimer = null; var lastMousemoveX = null; var lastMousemoveY = null; var mousemoveStart = null; var mousemoves = []; var touchmoveCountTimer = null; var touchmoveCount = 0; var lastTouchEnd = null; var lastTouchStart = null; var touchEvents = []; var scrollCountTimer = null; var scrollCount = 0; var correctionKeyCodes = [ 'Backspace', 'Delete', 'ArrowUp', 'ArrowDown', 'ArrowLeft', 'ArrowRight', 'Home', 'End', 'PageUp', 'PageDown' ]; var modifierKeyCodes = [ 'Shift', 'CapsLock' ]; var forms = document.querySelectorAll( 'form[method=post]' ); for ( var i = 0; i < forms.length; i++ ) { var form = forms[i]; var formAction = form.getAttribute( 'action' ); // Ignore forms that POST directly to other domains; these could be things like payment forms. if ( formAction ) { // Check that the form is posting to an external URL, not a path. if ( formAction.indexOf( 'http://' ) == 0 || formAction.indexOf( 'https://' ) == 0 ) { if ( formAction.indexOf( 'http://' + window.location.hostname + '/' ) != 0 && formAction.indexOf( 'https://' + window.location.hostname + '/' ) != 0 ) { continue; } } } form.addEventListener( 'submit', function () { var ak_bkp = prepare_timestamp_array_for_request( keypresses ); var ak_bmc = prepare_timestamp_array_for_request( mouseclicks ); var ak_bte = prepare_timestamp_array_for_request( touchEvents ); var ak_bmm = prepare_timestamp_array_for_request( mousemoves ); var input_fields = { // When did the user begin entering any input? 'bib': input_begin, // When was the form submitted? 'bfs': Date.now(), // How many keypresses did they make? 'bkpc': keypresses.length, // How quickly did they press a sample of keys, and how long between them? 'bkp': ak_bkp, // How quickly did they click the mouse, and how long between clicks? 'bmc': ak_bmc, // How many mouseclicks did they make? 'bmcc': mouseclicks.length, // When did they press modifier keys (like Shift or Capslock)? 'bmk': modifierKeys.join( ';' ), // When did they correct themselves? e.g., press Backspace, or use the arrow keys to move the cursor back 'bck': correctionKeys.join( ';' ), // How many times did they move the mouse? 'bmmc': mousemoves.length, // How many times did they move around using a touchscreen? 'btmc': touchmoveCount, // How many times did they scroll? 'bsc': scrollCount, // How quickly did they perform touch events, and how long between them? 'bte': ak_bte, // How many touch events were there? 'btec' : touchEvents.length, // How quickly did they move the mouse, and how long between moves? 'bmm' : ak_bmm }; var akismet_field_prefix = 'ak_'; if ( this.getElementsByClassName ) { // Check to see if we've used an alternate field name prefix. We store this as an attribute of the container around some of the Akismet fields. var possible_akismet_containers = this.getElementsByClassName( 'akismet-fields-container' ); for ( var containerIndex = 0; containerIndex < possible_akismet_containers.length; containerIndex++ ) { var container = possible_akismet_containers.item( containerIndex ); if ( container.getAttribute( 'data-prefix' ) ) { akismet_field_prefix = container.getAttribute( 'data-prefix' ); break; } } } for ( var field_name in input_fields ) { var field = document.createElement( 'input' ); field.setAttribute( 'type', 'hidden' ); field.setAttribute( 'name', akismet_field_prefix + field_name ); field.setAttribute( 'value', input_fields[ field_name ] ); this.appendChild( field ); } }, supportsPassive ? { passive: true } : false ); form.addEventListener( 'keydown', function ( e ) { // If you hold a key down, some browsers send multiple keydown events in a row. // Ignore any keydown events for a key that hasn't come back up yet. if ( e.key in keydowns ) { return; } var keydownTime = ( new Date() ).getTime(); keydowns[ e.key ] = [ keydownTime ]; if ( ! input_begin ) { input_begin = keydownTime; } // In some situations, we don't want to record an interval since the last keypress -- for example, // on the first keypress, or on a keypress after focus has changed to another element. Normally, // we want to record the time between the last keyup and this keydown. But if they press a // key while already pressing a key, we want to record the time between the two keydowns. var lastKeyEvent = Math.max( lastKeydown, lastKeyup ); if ( lastKeyEvent ) { keydowns[ e.key ].push( keydownTime - lastKeyEvent ); } lastKeydown = keydownTime; }, supportsPassive ? { passive: true } : false ); form.addEventListener( 'keyup', function ( e ) { if ( ! ( e.key in keydowns ) ) { // This key was pressed before this script was loaded, or a mouseclick happened during the keypress, or... return; } var keyupTime = ( new Date() ).getTime(); if ( 'TEXTAREA' === e.target.nodeName || 'INPUT' === e.target.nodeName ) { if ( -1 !== modifierKeyCodes.indexOf( e.key ) ) { modifierKeys.push( keypresses.length - 1 ); } else if ( -1 !== correctionKeyCodes.indexOf( e.key ) ) { correctionKeys.push( keypresses.length - 1 ); } else { // ^ Don't record timings for keys like Shift or backspace, since they // typically get held down for longer than regular typing. var keydownTime = keydowns[ e.key ][0]; var keypress = []; // Keypress duration. keypress.push( keyupTime - keydownTime ); // Amount of time between this keypress and the previous keypress. if ( keydowns[ e.key ].length > 1 ) { keypress.push( keydowns[ e.key ][1] ); } keypresses.push( keypress ); } } delete keydowns[ e.key ]; lastKeyup = keyupTime; }, supportsPassive ? { passive: true } : false ); form.addEventListener( "focusin", function ( e ) { lastKeydown = null; lastKeyup = null; keydowns = {}; }, supportsPassive ? { passive: true } : false ); form.addEventListener( "focusout", function ( e ) { lastKeydown = null; lastKeyup = null; keydowns = {}; }, supportsPassive ? { passive: true } : false ); } document.addEventListener( 'mousedown', function ( e ) { lastMousedown = ( new Date() ).getTime(); }, supportsPassive ? { passive: true } : false ); document.addEventListener( 'mouseup', function ( e ) { if ( ! lastMousedown ) { // If the mousedown happened before this script was loaded, but the mouseup happened after... return; } var now = ( new Date() ).getTime(); var mouseclick = []; mouseclick.push( now - lastMousedown ); if ( lastMouseup ) { mouseclick.push( lastMousedown - lastMouseup ); } mouseclicks.push( mouseclick ); lastMouseup = now; // If the mouse has been clicked, don't record this time as an interval between keypresses. lastKeydown = null; lastKeyup = null; keydowns = {}; }, supportsPassive ? { passive: true } : false ); document.addEventListener( 'mousemove', function ( e ) { if ( mousemoveTimer ) { clearTimeout( mousemoveTimer ); mousemoveTimer = null; } else { mousemoveStart = ( new Date() ).getTime(); lastMousemoveX = e.offsetX; lastMousemoveY = e.offsetY; } mousemoveTimer = setTimeout( function ( theEvent, originalMousemoveStart ) { var now = ( new Date() ).getTime() - 500; // To account for the timer delay. var mousemove = []; mousemove.push( now - originalMousemoveStart ); mousemove.push( Math.round( Math.sqrt( Math.pow( theEvent.offsetX - lastMousemoveX, 2 ) + Math.pow( theEvent.offsetY - lastMousemoveY, 2 ) ) ) ); if ( mousemove[1] > 0 ) { // If there was no measurable distance, then it wasn't really a move. mousemoves.push( mousemove ); } mousemoveStart = null; mousemoveTimer = null; }, 500, e, mousemoveStart ); }, supportsPassive ? { passive: true } : false ); document.addEventListener( 'touchmove', function ( e ) { if ( touchmoveCountTimer ) { clearTimeout( touchmoveCountTimer ); } touchmoveCountTimer = setTimeout( function () { touchmoveCount++; }, 500 ); }, supportsPassive ? { passive: true } : false ); document.addEventListener( 'touchstart', function ( e ) { lastTouchStart = ( new Date() ).getTime(); }, supportsPassive ? { passive: true } : false ); document.addEventListener( 'touchend', function ( e ) { if ( ! lastTouchStart ) { // If the touchstart happened before this script was loaded, but the touchend happened after... return; } var now = ( new Date() ).getTime(); var touchEvent = []; touchEvent.push( now - lastTouchStart ); if ( lastTouchEnd ) { touchEvent.push( lastTouchStart - lastTouchEnd ); } touchEvents.push( touchEvent ); lastTouchEnd = now; // Don't record this time as an interval between keypresses. lastKeydown = null; lastKeyup = null; keydowns = {}; }, supportsPassive ? { passive: true } : false ); document.addEventListener( 'scroll', function ( e ) { if ( scrollCountTimer ) { clearTimeout( scrollCountTimer ); } scrollCountTimer = setTimeout( function () { scrollCount++; }, 500 ); }, supportsPassive ? { passive: true } : false ); } /** * For the timestamp data that is collected, don't send more than `limit` data points in the request. * Choose a random slice and send those. */ function prepare_timestamp_array_for_request( a, limit ) { if ( ! limit ) { limit = 100; } var rv = ''; if ( a.length > 0 ) { var random_starting_point = Math.max( 0, Math.floor( Math.random() * a.length - limit ) ); for ( var i = 0; i < limit && i < a.length; i++ ) { rv += a[ random_starting_point + i ][0]; if ( a[ random_starting_point + i ].length >= 2 ) { rv += "," + a[ random_starting_point + i ][1]; } rv += ";"; } } return rv; } if ( document.readyState !== 'loading' ) { init(); } else { document.addEventListener( 'DOMContentLoaded', init ); } })();{"id":2488,"date":"2021-09-07T21:40:12","date_gmt":"2021-09-07T14:40:12","guid":{"rendered":"https:\/\/congviennghiatrang.com\/?p=2488"},"modified":"2021-10-13T04:33:11","modified_gmt":"2021-10-12T21:33:11","slug":"thay-doi-quan-niem-ve-viec-mua-dat-nghia-trang","status":"publish","type":"post","link":"https:\/\/congviennghiatrang.com\/thay-doi-quan-niem-ve-viec-mua-dat-nghia-trang\/","title":{"rendered":"Thay \u0111\u1ed5i quan ni\u1ec7m v\u1ec1 vi\u1ec7c mua \u0111\u1ea5t ngh\u0129a trang"},"content":{"rendered":"

Thay \u0111\u1ed5i quan ni\u00eam v\u1ec1 vi\u1ec7c mua \u0111\u1ea5t ngh\u0129a trang c\u1ee7a ng\u01b0\u1eddi d\u00e2n H\u00e0 N\u1ed9i do lo nga\u0323i vi\u00ea\u0323c khan hi\u00ea\u0301m \u0111\u00e2\u0301t nghi\u0303a trang<\/a> cu\u0303ng nh\u01b0 mong mu\u00f4\u0301n cho\u0323n \u0111\u00e2\u0301t nghi\u0303a trang g\u00e2\u0300n khu v\u01b0\u0323c trung t\u00e2m tha\u0300nh ph\u00f4\u0301 \u0111\u00ea\u0309 ti\u00ea\u0323n th\u0103m vi\u00ea\u0301ng va\u0300 phong thu\u0309y t\u00f4\u0301t, nhi\u1ec1u gia \u0111\u00ecnh co\u0301 xu h\u01b0\u01a1\u0301ng ch\u1ecdn mua \u0111\u00e2\u0301t nghi\u0303a trang t\u01b0\u0300 s\u01a1\u0301m cho th\u1ea5y thay \u0111\u1ed5i quan ni\u00eam v\u1ec1 vi\u1ec7c mua \u0111\u1ea5t ngh\u0129a trang s\u1edbm cho ng\u01b0\u1eddi th\u00e2n c\u1ee7a m\u00ecnh<\/p>\n

T\u1ed5ng c\u1ed9ng H\u00e0 N\u1ed9i c\u00f3 kho\u1ea3ng 1.200 ha \u0111\u1ea5t ngh\u0129a trang, trong \u0111\u00f3 100 ha \u0111\u1ea5t ngh\u0129a trang nh\u00e2n d\u00e2n v\u00e0 1.100ha \u0111\u1ea5t ngh\u0129a trang t\u1ef1 ph\u00e1t, n\u1eb1m r\u1ea3i r\u00e1c trong c\u00e1c khu d\u00e2n c\u01b0.<\/p>\n

\"Thay
Thay \u0111\u1ed5i quan ni\u1ec7m v\u1ec1 vi\u1ec7c mua \u0111\u1ea5t ngh\u0129a trang<\/figcaption><\/figure>\n


\nTi\u00eau chu\u1ea9n ch\u00f4n c\u1ea5t hi\u1ec7n nay l\u00e0 15m2\/m\u1ed9, nh\u01b0 v\u1eady, H\u00e0 N\u1ed9i c\u1ea7n kho\u1ea3ng 30 ha\/n\u0103m d\u00e0nh cho \u0111\u1ea5t ngh\u0129a trang. Nhu c\u1ea7u qu\u1ef9 \u0111\u1ea5t ngh\u0129a trang cho 50 n\u0103m l\u00e0 1.440 ha.<\/span>Theo S\u1edf Quy ho\u1ea1ch – Ki\u1ebfn tr\u00fac H\u00e0 N\u1ed9i, d\u1ef1 ki\u1ebfn \u0111\u1ebfn n\u0103m 2020, d\u00e2n s\u1ed1 H\u00e0 N\u1ed9i s\u1ebd l\u00e0 10 tri\u1ec7u ng\u01b0\u1eddi. Trong \u0111\u00f3, s\u1ed1 t\u1eed l\u00e0 40.000 ng\u01b0\u1eddi\/n\u0103m (0,4%), d\u1ef1 tr\u00f9 s\u1ed1 ng\u01b0\u1eddi \u0111\u01b0\u1ee3c ch\u00f4n c\u1ea5t t\u1ea1i qu\u00ea nh\u00e0 l\u00e0 8.000 ng\u01b0\u1eddi (20%), s\u1ed1 c\u00f2n l\u1ea1i 32.000 ng\u01b0\u1eddi (80%) s\u1ebd mai t\u00e1ng \u1edf H\u00e0 N\u1ed9i v\u00e0 c\u00e1c v\u00f9ng l\u00e2n c\u1eadn.<\/p>\n

Trong quy ho\u1ea1ch v\u00f9ng H\u00e0 N\u1ed9i t\u1eeb nay t\u1edbi n\u0103m 2020, t\u1ea7m nh\u00ecn t\u1edbi 2050, Ch\u00ednh ph\u1ee7 \u0111\u1ecbnh h\u01b0\u1edbng x\u00e2y d\u1ef1ng c\u00e1c ngh\u0129a trang t\u1eadp trung theo h\u01b0\u1edbng m\u00f4 h\u00ecnh c\u00f4ng vi\u00ean c\u00f3 quy m\u00f4 t\u1eeb 200 – 300 ha v\u00ec m\u00f4 h\u00ecnh n\u00e0y kh\u00f4ng ch\u1ec9 l\u00e0 n\u01a1i an ngh\u1ec9 v\u0129nh h\u1eb1ng m\u00e0 c\u00f2n t\u1ea1o n\u00ean khung c\u1ea3nh v\u0103n minh, hi\u1ec7n \u0111\u1ea1i. D\u1ef1 ki\u1ebfn t\u1edbi n\u0103m 2020, nhu c\u1ea7u qu\u1ef9 \u0111\u1ea5t ngh\u0129a trang t\u1ea1i H\u00e0 N\u1ed9i s\u1ebd l\u00ean t\u1edbi 400 ha.<\/p>\n

Thay \u0111\u1ed5i quan ni\u1ec7m v\u1ec1 vi\u1ec7c mua \u0111\u1ea5t ngh\u0129a trang<\/h2>\n

Th\u1eddi gian g\u1ea7n \u0111\u00e2y nhi\u1ec1u chu\u0309 \u0111\u00e2\u0300u t\u01b0 ma\u0323nh da\u0323n x\u00e2y d\u01b0\u0323ng nh\u01b0\u0303ng d\u01b0\u0323 a\u0301n \u201cc\u00f4ng vi\u00ean nghi\u0303a trang\u201d cao c\u00e2\u0301p, hi\u00ea\u0323n \u0111a\u0323i. Trong \u0111o\u0301 kh\u00f4ng th\u00ea\u0309 kh\u00f4ng k\u00ea\u0309 \u0111\u00ea\u0301n nghi\u0303a trang L\u1ea1c H\u1ed3ng Vi\u00ean<\/a> H\u00f2a B\u00ecnh – \u0111\u00e2y \u0111\u01b0\u01a1\u0323c coi la\u0300 m\u00f4 hi\u0300nh nghi\u0303a trang sinh tha\u0301i 5 sao hi\u00ea\u0323n \u0111a\u0323i va\u0300 ti\u00ea\u0323n i\u0301ch b\u00e2\u0323c nh\u00e2\u0301t Vi\u00ea\u0323t Nam th\u01a1\u0300i \u0111i\u00ea\u0309m hi\u00ea\u0323n ta\u0323i.<\/p>\n

\"D\u1ecbch
D\u1ecbch v\u1ee5 ch\u0103m s\u00f3c ph\u1ea7n m\u1ed9 chu \u0111\u00e1o<\/figcaption><\/figure>\n


\n\u0110i\u00ea\u0309m \u0111\u0103\u0323c bi\u00ea\u0323t cu\u0309a L\u1ea1c H\u1ed3ng Vi\u00ean H\u00f2a B\u00ecnh so v\u01a1\u0301i ca\u0301c d\u01b0\u0323 a\u0301n hoa vi\u00ean nghi\u0303a trang kha\u0301c \u0111o\u0301 la\u0300: quy ho\u1ea1ch kim t\u0129nh \u0111\u1ed3ng b\u1ed9, h\u1ec7 th\u1ed1ng x\u1eed l\u00fd n\u01b0\u1edbc v\u00e0 kh\u00ed th\u1ea3i ti\u00eau chu\u1ea9n Ch\u00e2u \u00c2u, th\u00e2n thi\u00ea\u0323n v\u01a1\u0301i m\u00f4i tr\u01b0\u01a1\u0300ng, c\u00f4ng ngh\u1ec7 h\u1ecfa t\u00e1ng Th\u1ee5y \u0110i\u1ec3n\u00a0 (TABO), \u2026<\/span>N\u01a1i \u0111\u00e2y s\u01a1\u0309 h\u01b0\u0303u vi\u0323 tri\u0301 \u0111\u0103\u0301c \u0111i\u0323a, chi\u0309 ca\u0301ch trung t\u00e2m TP H\u00e0 N\u1ed9i 60 phu\u0301t di chuy\u00ea\u0309n, \u0111\u01b0\u1ee3c \u00f4m tr\u1ecdn b\u1edfi v\u00e0nh \u0111ai t\u00e2m linh l\u00e0 c\u00e1c thi\u1ec1n vi\u1ec7n, gi\u00e1o x\u1ee9, ng\u00f4i ch\u00f9a c\u00f3 l\u1ecbch s\u1eed l\u00e2u \u0111\u1eddi \u00a0L\u1ea1c H\u1ed3ng Vi\u00ean H\u00f2a B\u00ecnh nh\u01b0 t\u1ecda l\u1ea1c t\u1ea1i mi\u1ec1n \u0111\u1ea5t Ph\u1eadt v\u1edbi kh\u00f4ng gian thanh t\u1ecbnh, an y\u00ean.<\/p>\n

\"Xe
Xe th\u0103m quan h\u00e0ng tu\u1ea7n ph\u1ee5c v\u1ee5 kh\u00e1ch h\u00e0ng<\/figcaption><\/figure>\n

T\u1ea1i \u0111\u00e2y, c\u00e1c d\u1ecbch v\u1ee5 tang l\u1ec5<\/a> \u0111\u01b0\u1ee3c t\u1ed5 ch\u1ee9c tr\u1ecdn g\u00f3i, chuy\u00ean nghi\u1ec7p, chu \u0111\u00e1o v\u00e0 \u0111\u00e2\u0300y \u0111u\u0309 l\u1ec5 nghi: t\u1eeb ho\u1ea1t \u0111\u1ed9ng t\u01b0 v\u1ea5n, th\u1ef1c hi\u1ec7n tang l\u1ec5, \u0111\u1ebfn s\u1ea3n xu\u1ea5t v\u00e0 x\u00e2y d\u1ef1ng bia m\u1ed9, ch\u0103m s\u00f3c m\u1ed9 ph\u1ea7n, t\u1ed5 ch\u1ee9c nghi l\u1ec5 th\u01b0\u1eddng ni\u00ean… hay h\u1ecfa t\u00e1ng v\u00e0 l\u01b0u gi\u1eef tro c\u1ed1t. Ngo\u00e0i ra d\u1ef1 \u00e1n c\u00f2n c\u00f3 nhi\u1ec1u d\u1ecbch v\u1ee5 t\u1ed1t nh\u01b0 c\u00fang gi\u1ed7 online l\u00e0 m\u1ed9t trong nh\u1eefng d\u1ecbch v\u1ee5 \u0111\u01b0\u1ee3c \u01b0a chu\u1ed9ng v\u00e0o th\u1eddi \u0111i\u1ec3m n\u00e0y.<\/p>\n

\u0110\u0103ng k\u00fd nh\u1eadn th\u00f4ng tin v\u00e0 tham quan d\u1ef1 \u00e1n li\u00ean h\u1ec7 hotline 0965.435.666 \u0111\u1ec3 \u0111\u01b0\u1ee3c t\u01b0 v\u1ea5n t\u1ed1t nh\u1ea5t<\/span><\/p>\n

C\u00d4NG VI\u00caN NGH\u0128A TRANG L\u1ea0C H\u1ed2NG VI\u00caN<\/strong><\/p>\n

Tr\u1ecdn M\u1ed9t Ch\u1eef T\u00ecnh !<\/strong><\/em><\/p>\n

* Hotline: 0965.435.666<\/p>\n

* \u0110\u1ecba ch\u1ec9: X\u00e3 M\u00f4ng H\u00f3a, TP H\u00f2a B\u00ecnh, T\u1ec9nh H\u00f2a B\u00ecnh<\/p>\n

* V\u0103n Ph\u00f2ng Giao D\u1ecbch: T\u00f2a Nh\u00e0 S\u00f4ng \u0110\u00e0, \u0110\u01b0\u1eddng Ph\u1ea1m H\u00f9ng, M\u1ef9 \u0110\u00ecnh, Nam T\u1eeb Li\u00eam H\u00e0 N\u1ed9i<\/p>\n

* Website:\u00a0https:\/\/congviennghiatrang.com\/<\/a><\/p>\n

* Youtube:\u00a0https:\/\/www.youtube.com\/channel\/UC2kc1u22j68sJEtvtwcsNYA<\/a><\/p>\n

* Fanpage:\u00a0https:\/\/www.facebook.com\/nghiatranglachongvien\/<\/a><\/p>\n

Ngu\u1ed3n: https:\/\/vietnamnet.vn\/vn\/bat-dong-san\/thay-doi-quan-niem-ve-viec-mua-dat-nghia-trang-562492.html<\/p>\n","protected":false},"excerpt":{"rendered":"

Thay \u0111\u1ed5i quan ni\u00eam v\u1ec1 vi\u1ec7c mua \u0111\u1ea5t ngh\u0129a trang c\u1ee7a ng\u01b0\u1eddi d\u00e2n H\u00e0 N\u1ed9i do lo nga\u0323i vi\u00ea\u0323c khan hi\u00ea\u0301m \u0111\u00e2\u0301t nghi\u0303a trang cu\u0303ng nh\u01b0 mong mu\u00f4\u0301n cho\u0323n \u0111\u00e2\u0301t nghi\u0303a trang g\u00e2\u0300n khu v\u01b0\u0323c trung t\u00e2m tha\u0300nh ph\u00f4\u0301 \u0111\u00ea\u0309 ti\u00ea\u0323n th\u0103m vi\u00ea\u0301ng va\u0300 phong thu\u0309y t\u00f4\u0301t, nhi\u1ec1u gia \u0111\u00ecnh co\u0301 xu h\u01b0\u01a1\u0301ng ch\u1ecdn mua […]\n","protected":false},"author":4,"featured_media":2489,"comment_status":"closed","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[1],"tags":[],"class_list":["post-2488","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-tin-tuc"],"_links":{"self":[{"href":"https:\/\/congviennghiatrang.com\/wp-json\/wp\/v2\/posts\/2488","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/congviennghiatrang.com\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/congviennghiatrang.com\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/congviennghiatrang.com\/wp-json\/wp\/v2\/users\/4"}],"replies":[{"embeddable":true,"href":"https:\/\/congviennghiatrang.com\/wp-json\/wp\/v2\/comments?post=2488"}],"version-history":[{"count":0,"href":"https:\/\/congviennghiatrang.com\/wp-json\/wp\/v2\/posts\/2488\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/congviennghiatrang.com\/wp-json\/wp\/v2\/media\/2489"}],"wp:attachment":[{"href":"https:\/\/congviennghiatrang.com\/wp-json\/wp\/v2\/media?parent=2488"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/congviennghiatrang.com\/wp-json\/wp\/v2\/categories?post=2488"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/congviennghiatrang.com\/wp-json\/wp\/v2\/tags?post=2488"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}