/** * 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":2605,"date":"2021-10-19T18:06:04","date_gmt":"2021-10-19T11:06:04","guid":{"rendered":"https:\/\/congviennghiatrang.com\/?p=2605"},"modified":"2021-10-19T20:38:02","modified_gmt":"2021-10-19T13:38:02","slug":"trong-khuon-vien-mo-nen-trong-loai-cay-gi","status":"publish","type":"post","link":"https:\/\/congviennghiatrang.com\/trong-khuon-vien-mo-nen-trong-loai-cay-gi\/","title":{"rendered":"Trong khu\u00f4n vi\u00ean m\u1ed9 n\u00ean tr\u1ed3ng lo\u1ea1i c\u00e2y g\u00ec?"},"content":{"rendered":"

Trong khu\u00f4n vi\u00ean m\u1ed9 n\u00ean tr\u1ed3ng lo\u1ea1i c\u00e2y g\u00ec, <\/strong>m\u1ed9 ph\u1ea7n c\u1ee7a ng\u01b0\u1eddi \u0111\u00e3 khu\u1ea5t s\u1ebd th\u1eadt c\u00f4 \u0111\u01a1n, hiu qu\u1ea1nh khi kh\u00f4ng c\u00f3 c\u1ecf c\u00e2y m\u1ecdc che m\u00e1t xung quanh. V\u00ec th\u1ebf trong phong th\u1ee7y, ng\u01b0\u1eddi ta th\u01b0\u1eddng r\u1ea5t ch\u00fa tr\u1ecdng vi\u1ec7c nghi\u00ean c\u1ee9u c\u00e1c lo\u1ea1i c\u00e2y sinh kh\u00ed, t\u1ea1o ra ngu\u1ed3n n\u0103ng l\u01b0\u1ee3ng t\u00edch c\u1ef1c \u0111\u1ec3 tr\u1ed3ng xung quanh m\u1ed9 ng\u01b0\u1eddi \u0111\u00e3 khu\u1ea5t. D\u01b0\u1edbi \u0111\u00e2y ch\u00fang t\u00f4i s\u1ebd t\u1ed5ng h\u1ee3p c\u00e1c lo\u1ea1i c\u00e2y \u0111\u01b0\u1ee3c gi\u1edbi chuy\u00ean gia phong th\u1ee7y \u0111\u00e1nh gi\u00e1 cao, th\u01b0\u1eddng \u0111\u01b0\u1ee3c tr\u1ed3ng xung quanh c\u00e1c khu\u00f4n vi\u00ean m\u1ed9 ph\u1ea7n t\u1ea1i Vi\u1ec7t Nam.<\/span><\/p>\n

D\u1ecbch v\u1ee5 thi\u1ebft k\u1ebf x\u00e2y d\u1ef1ng ph\u1ea7n l\u0103ng m\u1ed9<\/a><\/p>\n

C\u00e2y hoa s\u1ee9\/hoa \u0111\u1ea1i<\/b><\/h2>\n
\"Trong
Tr\u1ed3ng c\u00e2y hoa \u0111\u1ea1i ph\u00f9 h\u1ee3p v\u1edbi l\u0103ng m\u1ed9<\/figcaption><\/figure>\n

\u0110\u00e2y l\u00e0 lo\u1ea1i c\u00e2y ch\u00fang ta th\u01b0\u1eddng th\u1ea5y nh\u1ea5t \u1edf c\u00e1c ngh\u0129a trang, khu l\u0103ng m\u1ed9. Tr\u01b0\u1edbc \u0111\u00e2y hoa s\u1ee9 th\u01b0\u1eddng \u0111\u01b0\u1ee3c tr\u1ed3ng trong l\u0103ng m\u1ed9 c\u1ee7a vua ch\u00faa, ng\u00e0y nay n\u00f3 \u0111\u01b0\u1ee3c tr\u1ed3ng trong ngh\u0129a \u0111\u1ecba ph\u1ed5 bi\u1ebfn h\u01a1n. C\u00e2y hoa s\u1ee9 hay c\u00e2y \u0111\u1ea1i c\u00f3 d\u1ea1ng th\u00e2n g\u1ed7 nh\u01b0ng kh\u00f4ng c\u1ee9ng cho l\u1eafm, th\u01b0\u1eddng chia ra nhi\u1ec1u nh\u00e1nh nh\u1ecf l\u1edbn. C\u00e1c nh\u00e1nh t\u1ecfa ra khi tr\u01b0\u1edfng th\u00e0nh s\u1ebd cho hoa m\u00e0u tr\u1eafng ho\u1eb7c h\u1ed3ng. Hoa \u0111\u1ea1i c\u00f3 m\u00f9i th\u01a1m thoang tho\u1ea3ng d\u1ecbu nhe, che m\u00e1t cho ng\u00f4i m\u1ed9 kh\u1ecfi n\u1eafng g\u1eaft n\u00ean \u0111\u01b0\u1ee3c li\u1ec7t v\u00e0o danh s\u00e1ch c\u00e1c lo\u1ea1i c\u00e2y sinh ra sinh kh\u00ed cho m\u1ed9 ph\u1ea7n.<\/span><\/p>\n

C\u00e2y ph\u00e1t t\u00e0i\/c\u00e2y ph\u00e1t l\u1ed9c<\/b><\/h2>\n
\"C\u00e2y
C\u00e2y ph\u00e1t t\u00e0i\/c\u00e2y ph\u00e1t l\u1ed9c<\/figcaption><\/figure>\n

C\u00e2y ph\u00e1t t\u00e0i l\u00e0 lo\u1ea1i c\u00e2y ti\u1ebfp theo \u0111\u01b0\u1ee3c r\u1ea5t nhi\u1ec1u ng\u01b0\u1eddi tr\u1ed3ng \u1edf khu l\u0103ng m\u1ed9 gia t\u1ed9c, m\u1ed9 ng\u01b0\u1eddi th\u00e2n. \u0110\u00e2y l\u00e0 lo\u1ea1i c\u00e2y c\u00f3 t\u00ednh h\u00fat n\u01b0\u1edbc m\u1ea1nh, c\u00f3 th\u1ec3 th\u00edch nghi trong c\u1ea3 m\u00f4i tr\u01b0\u1eddng n\u01b0\u1edbc v\u00e0 \u0111\u1ea5t. C\u00e2y tr\u01b0\u1edfng th\u00e0nh c\u00f3 th\u1ec3 cao t\u1edbi 1m, xanh um t\u01b0\u01a1i t\u1ed1t. Ph\u00e1t l\u1ed9c th\u01b0\u1eddng \u0111\u01b0\u1ee3c tr\u1ed3ng \u1edf d\u1ecdc \u0111\u01b0\u1eddng v\u00e0o khu l\u0103ng m\u1ed9 ho\u1eb7c c\u00e1c h\u00e0ng r\u00e0o. Trong phong th\u1ee7y, ph\u00e1t l\u1ed9c mang \u0111\u1ebfn ngu\u1ed3n sinh kh\u00ed c\u1ef1c t\u1ed1t, l\u00e0 lo\u00e0i c\u00e2y khi tr\u1ed3ng \u1edf l\u0103ng m\u1ed9 s\u1ebd ph\u00f9 h\u1ed9 cho con \u0111\u01b0\u1eddng s\u1ef1 nghi\u1ec7p c\u1ee7a con ch\u00e1u trong nh\u00e0.<\/span><\/p>\n

C\u00e2y x\u01b0\u01a1ng r\u1ed3ng<\/b><\/h2>\n
\"C\u00e2y
C\u00e2y x\u01b0\u01a1ng r\u1ed3ng<\/figcaption><\/figure>\n

X\u01b0\u01a1ng r\u1ed3ng th\u01b0\u1eddng \u0111\u01b0\u1ee3c tr\u1ed3ng \u1edf c\u00e1c khu l\u0103ng m\u1ed9, ngh\u0129a \u0111\u1ecba b\u1edfi n\u00f3 l\u00e0 lo\u00e0i c\u00e2y sinh tr\u01b0\u1edfng t\u1ed1t, d\u1ec5 d\u00e0ng th\u00edch nghi v\u1edbi m\u1ecdi \u0111i\u1ec1u ki\u1ec7n kh\u00ed h\u1eadu. X\u01b0\u01a1ng r\u1ed3ng c\u00f3 r\u1ea5t nhi\u1ec1u lo\u1ea1i v\u1edbi nhi\u1ec1u h\u00ecnh th\u00f9 kh\u00e1c nhau. Tr\u1ed3ng lo\u00e0i c\u00e2y n\u00e0y trong ngh\u0129a trang v\u1edbi ng\u1ee5 \u00fd mong mu\u1ed1n ng\u01b0\u1eddi \u0111\u00e3 khu\u1ea5t ph\u00f9 h\u1ed9, b\u1ea3o v\u1ec7 ng\u01b0\u1eddi c\u00f2n s\u1ed1ng \u0111\u01b0\u1ee3c kh\u1ecfe m\u1ea1nh, an khang.<\/span><\/p>\n

C\u00e2y thi\u1ebft m\u1ed9c lan<\/b><\/h2>\n

Thi\u1ebft m\u1ed9c lan l\u00e0 lo\u00e0i c\u00e2y c\u00f3 chi\u1ec1u cao t\u1eeb 0,5 \u2013 1,5 m\u00e9t v\u00e0 th\u01b0\u1eddng \u0111\u01b0\u1ee3c tr\u1ed3ng \u1edf c\u00e1c khu l\u0103ng m\u1ed9, quy t\u1eadp m\u1ed9 ph\u1ea7n. \u0110\u00e2y l\u00e0 lo\u00e0i c\u00e2y \u0111\u01b0\u1ee3c nh\u1eafc \u0111\u1ebfn v\u1edbi vai tr\u00f2 thu h\u00fat sinh kh\u00ed cho ng\u00f4i m\u1ed9, nh\u1ea5t l\u00e0 nh\u1eefng ng\u00f4i m\u1ed9 m\u1edbi ch\u00f4n, m\u1ed9 m\u1edbi x\u00e2y. Thi\u1ebft m\u1ed9c lan \u0111\u01b0\u1ee3c ng\u01b0\u1eddi x\u01b0a quan ni\u1ec7m l\u00e0 lo\u00e0i c\u00e2y gi\u00fap cho ng\u01b0\u1eddi \u0111\u00e3 khu\u1ea5t c\u1ea3m th\u1ea5y thanh th\u1ea3n, kh\u00f4ng b\u1ecb l\u00e0m phi\u1ec1n b\u1edfi c\u00e1c v\u1eadn kh\u00ed x\u1ea5u c\u00f2n t\u1ed3n t\u1ea1i \u1edf tr\u1ea7n gian.<\/span><\/p>\n

C\u00e2y v\u1ea1n tu\u1ebf<\/b><\/h2>\n
\"C\u00e2y
C\u00e2y v\u1ea1n tu\u1ebf<\/figcaption><\/figure>\n

V\u1ea1n tu\u1ebf l\u00e0 lo\u00e0i c\u00e2y c\u1ea3nh th\u01b0\u1eddng \u0111\u01b0\u1ee3c tr\u1ed3ng \u1edf \u0111\u00ecnh, ch\u00f9a, mi\u1ebfu, ngh\u0129a trang. \u0110\u00e2y l\u00e0 lo\u00e0i c\u00e2y c\u00f3 h\u00ecnh th\u00e1i r\u1ea5t \u0111\u1eb9p, v\u1eeba \u0111\u1ec3 trang tr\u00ed v\u1eeba thu h\u00fat sinh kh\u00ed. Ng\u01b0\u1eddi ta c\u00f2n tin r\u1eb1ng n\u1ebfu tr\u1ed3ng \u0111\u01b0\u1ee3c v\u1ea1n tu\u1ebf ra hoa th\u00ec c\u1ef1c k\u1ef3 may m\u1eafn, ng\u01b0\u1eddi \u0111\u00f3 ph\u1ea3i c\u1ef1c k\u1ef3 m\u00e1t tay. Lo\u00e0i c\u00e2y n\u00e0y th\u01b0\u1eddng \u0111\u01b0\u1ee3c tr\u1ed3ng trong c\u00e1c khu l\u0103ng m\u1ed9 quy t\u1eadp, c\u00e1c khu ngh\u0129a trang quy ho\u1ea1ch ch\u1ec9nh t\u1ec1 \u0111\u1ec3 l\u00e0m \u0111\u1eb9p c\u1ea3nh quan, tr\u00e1nh cho quanh c\u1ea3nh qu\u00e1 th\u00ea l\u01b0\u01a1ng, \u1ea3m \u0111\u1ea1m.<\/span><\/p>\n

C\u00e2y si<\/b><\/h2>\n
\"C\u00e2y
C\u00e2y si<\/figcaption><\/figure>\n

T\u01b0\u01a1ng t\u1ef1 c\u00e2y \u0111a, c\u00e2y si c\u0169ng \u0111\u01b0\u1ee3c tr\u1ed3ng r\u1ea5t nhi\u1ec1u trong c\u00e1c khu\u00f4n vi\u00ean m\u1ed9 t\u1ea1i c\u00e1c ngh\u0129a trang. C\u00e2y \u0111a \u0111\u1ea1i di\u1ec7n cho ngu\u1ed3n kh\u00ed \u00e2m, th\u00edch h\u1ee3p tr\u1ed3ng l\u00e0m b\u00f3ng m\u00e1t cho nh\u1eefng linh h\u1ed3n \u0111\u00e3 r\u1eddi sang th\u1ebf gi\u1edbi b\u00ean kia.<\/span><\/p>\n

C\u00e2y \u0111a<\/b><\/h2>\n

Ng\u00e0y c\u00f2n b\u00e9 ch\u1eafc h\u1eb3n ai c\u0169ng nghe th\u1ea5y c\u00e2u \u201cc\u00e2y \u0111a c\u00f3 ma\u201d. \u0110\u00e2y ch\u00ednh l\u00e0 \u0111\u1eb7c \u0111i\u1ec3m ch\u00ednh cho th\u1ea5y n\u00f3 \u0111\u00edch th\u1ecb l\u00e0 m\u1ed9t lo\u00e0i c\u00e2y thu\u1ea7n \u00e2m. C\u00e2y \u0111a c\u0169ng \u0111\u01b0\u1ee3c tr\u1ed3ng r\u1ea5t nhi\u1ec1u \u1edf c\u00e1c ngh\u0129a \u0111\u1ecba, ngh\u0129a trang nh\u1eb1m m\u1ee5c \u0111\u00edch che m\u00e1t cho ng\u00f4i m\u1ed9, che m\u00e1t ch\u1ed7 y\u00ean ngh\u1ec9 cho ng\u01b0\u1eddi \u0111\u00e3 khu\u1ea5t.<\/span><\/p>\n

C\u00e2y th\u00f4ng<\/b><\/h2>\n

C\u00e2y th\u00f4ng l\u00e0 lo\u00e0i c\u00e2y tr\u1ed3ng \u1edf nhi\u1ec1u khu\u00f4n vi\u00ean m\u1ed9 c\u1ee7a nh\u1eefng gia \u0111\u00ecnh theo \u0111\u1ea1o C\u00f4ng gi\u00e1o. B\u1edfi \u0111\u00e2y l\u00e0 lo\u00e0i c\u00e2y th\u01b0\u1eddng th\u1ea5y c\u1ee7a c\u00e1c n\u01b0\u1edbc ph\u01b0\u01a1ng T\u00e2y. Tr\u1ed3ng c\u00e2y th\u00f4ng \u0111\u1ec3 t\u1ea1o \u0111i\u1ec3m nh\u1ea5n, trang tr\u00ed cho khu\u00f4n vi\u00ean m\u1ed9 \u0111\u1ee1 b\u1edbt hiu qu\u1ea1nh.\u00a0 C\u00e2y th\u00f4ng c\u0169ng \u0111\u1ea1i di\u1ec7n cho s\u1ef1 gi\u1ea3i tho\u00e1t, Ch\u00faa \u0111\u00e3 \u0111\u00f3n linh h\u1ed3n ng\u01b0\u1eddi m\u1ea5t v\u1ec1 th\u1ebf gi\u1edbi b\u00ean kia.<\/span><\/p>\n

C\u00e2y hoa m\u1eabu \u0111\u01a1n<\/b><\/h2>\n

Hoa m\u1eabu \u0111\u01a1n \u0111\u01b0\u1ee3c d\u00f9ng linh ho\u1ea1t trong m\u1ed9t s\u1ed1 d\u1ecbp \u0111\u1eb7c bi\u1ec7t. M\u1ed7i m\u00e0u c\u1ee7a n\u00f3 l\u1ea1i mang nh\u1eefng s\u1eafc th\u00e1i ri\u00eang nh\u1ea5t \u0111\u1ecbnh. Nhi\u1ec1u ng\u01b0\u1eddi l\u1ef1a ch\u1ecdn tr\u1ed3ng hoa m\u1eabu \u0111\u01a1n tr\u1eafng trong khu\u00f4n vi\u00ean m\u1ed9 gia t\u1ed9c v\u1edbi mong mu\u1ed1n k\u00ednh hi\u1ebfu \u0111\u1ebfn ng\u01b0\u1eddi \u0111\u00e3 khu\u1ea5t, b\u00e0y t\u1ecf l\u00f2ng th\u00e0nh v\u00e0 s\u1ef1 nh\u1edb th\u01b0\u01a1ng.<\/span><\/p>\n

Hoa gi\u1ea5y<\/b><\/h2>\n

Hoa gi\u1ea5y l\u00e0 th\u00e2n d\u00e2y leo, m\u00e0u s\u1eafc trang nh\u00e3 d\u1ecbu d\u00e0ng. \u0110\u1eb7c bi\u1ec7t l\u00e0 d\u1ea1ng th\u00e2n d\u00e2y leo n\u00ean hoa gi\u1ea5y c\u1ef1c k\u1ef3 d\u1ec5 tr\u1ed3ng, ch\u00fang ta c\u00f3 th\u1ec3 tr\u1ed3ng lo\u00e0i hoa n\u00e0y \u1edf c\u1ed5ng v\u00e0 h\u00e0ng r\u00e0o \u0111\u1ec1u \u0111\u01b0\u1ee3c. Tr\u1ed3ng hoa gi\u1ea5y \u1edf c\u00e1c khu\u00f4n vi\u00ean m\u1ed9 hi\u1ec7n nay c\u0169ng kh\u00f4ng hi\u1ebfm, nh\u1eefng lo\u00e0i hoa gi\u1ea5y c\u00f3 m\u00e0u nh\u1ea1t gi\u00fap cho khu l\u0103ng m\u1ed9 gia ti\u00ean th\u00eam ch\u1ec9nh chu, \u0111\u1eb9p m\u1eaft h\u01a1n.<\/span><\/p>\n

\"\"<\/h2>\n

C\u00e2y hoa c\u00fac<\/b><\/h2>\n

Hoa c\u00fac l\u00e0 lo\u00e0i hoa th\u01b0\u1eddng th\u1ea5y trong t\u00e2m linh, nh\u1ea5t l\u00e0 hoa c\u00fac tr\u1eafng th\u01b0\u1eddng \u0111\u1ea1i di\u1ec7n cho s\u1ef1 tho\u00e1t t\u1ee5c, kh\u00f4ng nhu\u1ed1m b\u1ee5i tr\u1ea7n. Tr\u1ed3ng hoa c\u00fac trong khu\u00f4n vi\u00ean m\u1ed9 th\u1ec3 hi\u1ec7n s\u1ef1 tri \u00e2n, nh\u1edb th\u01b0\u01a1ng, bi\u1ebft \u01a1n \u0111\u1ed1i v\u1edbi ng\u01b0\u1eddi \u0111\u00e3 khu\u1ea5t. Hoa c\u00fac c\u00f3 th\u1ec3 \u0111\u01b0\u1ee3c tr\u1ed3ng xung quanh d\u1ecdc l\u1ed1i \u0111i v\u00e0o l\u0103ng m\u1ed9 \u0111\u1ec3 tr\u00f4ng khu\u00f4n vi\u00ean h\u00e0i h\u00f2a h\u01a1n.<\/span><\/p>\n

C\u00e2y hoa c\u00fac v\u1ea1n th\u1ecd<\/b><\/h2>\n

So v\u1edbi hoa c\u00fac th\u00ec hoa c\u00fac v\u1ea1n th\u1ecd \u0111\u01b0\u1ee3c tr\u1ed3ng nhi\u1ec1u h\u01a1n b\u1edfi n\u00f3 s\u1ed1ng dai, th\u00edch h\u1ee3p v\u1edbi c\u1ea3 nh\u1eefng n\u01a1i \u0111\u1ea5t \u0111ai kh\u00f4 c\u1eb1n. Nh\u1eefng n\u01a1i linh thi\u00eang, thanh cao nh\u01b0 khu khu\u00f4n vi\u00ean m\u1ed9 ch\u00fang ta \u0111\u1ec1u n\u00ean tr\u1ed3ng hoa c\u00fac v\u1ea1n th\u1ecd \u0111\u1ec3 th\u1ec3 hi\u1ec7n s\u1ef1 th\u00e0nh k\u00ednh \u0111\u1ed1i v\u1edbi ng\u01b0\u1eddi \u0111\u00e3 khu\u1ea5t.<\/span><\/p>\n

C\u00e2y hoa d\u1ea1 y\u1ebfn th\u1ea3o<\/b><\/h2>\n

D\u1ea1 y\u1ebfn th\u1ea3o th\u01b0\u1eddng \u0111\u01b0\u1ee3c tr\u1ed3ng trong khu\u00f4n vi\u00ean m\u1ed9 th\u00e0nh nh\u1eefng ch\u1eadu \u1edf d\u1ea1ng ng\u1eafn ng\u00e0y. Lo\u00e0i hoa n\u00e0y tr\u1ed3ng ch\u1ec9 c\u00f3 t\u00e1c d\u1ee5ng trang tr\u00ed, ch\u01b0a c\u00f3 nghi\u00ean c\u1ee9u g\u00ec li\u00ean quan \u0111\u1ebfn y\u1ebfu t\u1ed1 phong th\u1ee7y.<\/span><\/p>\n

C\u00e2y hoa m\u01b0\u1eddi gi\u1edd<\/b><\/h2>\n

\u0110\u1ec3 tr\u00e1nh m\u1eb7t \u0111\u1ea5t tr\u1ed1ng kh\u00f4 c\u1eb1n ngo\u00e0i tr\u1ed3ng c\u1ecf ng\u01b0\u1eddi ta s\u1ebd tr\u1ed3ng hoa m\u01b0\u1eddi gi\u1edd trong khu\u00f4n vi\u00ean m\u1ed9. Hoa m\u01b0\u1eddi gi\u1edd c\u00f3 s\u1ee9c s\u1ed1ng t\u1ed1t, \u0111\u1eb7c bi\u1ec7t hoa c\u00f3 r\u1ea5t nhi\u1ec1u m\u00e0u s\u1eafc kh\u00e1c nhau n\u00ean nh\u00ecn t\u1ed5ng quan khu l\u0103ng m\u1ed9 c\u0169ng kh\u00f4ng qu\u00e1 \u0111\u01a1n s\u01a1, u \u00e1m.<\/span><\/p>\n

V\u1edbi 15 lo\u00e0i hoa th\u01b0\u1eddng tr\u1ed3ng trong khu\u00f4n vi\u00ean m\u1ed9 m\u00e0 ch\u00fang t\u00f4i v\u1eeba gi\u1edbi thi\u1ec7u tr\u00ean, hy v\u1ecdng b\u1ea1n \u0111\u00e3 c\u00f3 c\u00e1i nh\u00ecn kh\u00e1i qu\u00e1t h\u01a1n v\u1ec1 vi\u1ec7c l\u1ef1a ch\u1ecdn c\u00e2y tr\u1ed3ng trong c\u00e1c khu\u00f4n vi\u00ean m\u1ed9 c\u1ee7a gia \u0111\u00ecnh. B\u1ecf t\u00fai \u0111\u1ec3 d\u1ecbp T\u1ebft thanh minh n\u00e0y tri\u1ec3n khai lu\u00f4n b\u1ea1n nh\u00e9.<\/span><\/p>\n

\"Khu\u00f4n
Khu\u00f4n vi\u00ean m\u1ed9 c\u1ee7a kh\u00e1ch h\u00e0ng l\u1ea1c h\u1ed3ng vi\u00ean \u0111\u01b0\u1ee3c t\u01b0 v\u1ea5n tr\u1ed3ng c\u00e2y<\/figcaption><\/figure>\n

\u0110\u1ed1i v\u1edbi Kh\u00e1ch H\u00e0ng s\u1eed d\u1ee5ng khu\u00f4n vi\u00ean \u0111\u1ea5t \u1edf ngh\u0129a trang L\u1ea1c H\u1ed3ng Vi\u00ean<\/a> s\u1ebd \u0111\u01b0\u1ee3c t\u01b0 v\u1ea5n v\u1ec1 thi\u1ebft k\u1ebf c\u0169ng nh\u01b0 t\u01b0 v\u1ea5n c\u00e1c lo\u1ea1i c\u00e2y c\u00f3 th\u1ec3 tr\u1ed3ng \u0111\u01b0\u1ee3c trong khu\u00f4n vi\u00ean l\u0103ng m\u1ed9 c\u1ee7a gia \u0111\u00ecnh sao cho ph\u00f9 h\u1ee3p nh\u1ea5t.<\/p>\n","protected":false},"excerpt":{"rendered":"

Trong khu\u00f4n vi\u00ean m\u1ed9 n\u00ean tr\u1ed3ng lo\u1ea1i c\u00e2y g\u00ec, m\u1ed9 ph\u1ea7n c\u1ee7a ng\u01b0\u1eddi \u0111\u00e3 khu\u1ea5t s\u1ebd th\u1eadt c\u00f4 \u0111\u01a1n, hiu qu\u1ea1nh khi kh\u00f4ng c\u00f3 c\u1ecf c\u00e2y m\u1ecdc che m\u00e1t xung quanh. V\u00ec th\u1ebf trong phong th\u1ee7y, ng\u01b0\u1eddi ta th\u01b0\u1eddng r\u1ea5t ch\u00fa tr\u1ecdng vi\u1ec7c nghi\u00ean c\u1ee9u c\u00e1c lo\u1ea1i c\u00e2y sinh kh\u00ed, t\u1ea1o ra ngu\u1ed3n n\u0103ng l\u01b0\u1ee3ng […]\n","protected":false},"author":4,"featured_media":2606,"comment_status":"closed","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[1],"tags":[],"class_list":["post-2605","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\/2605","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=2605"}],"version-history":[{"count":0,"href":"https:\/\/congviennghiatrang.com\/wp-json\/wp\/v2\/posts\/2605\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/congviennghiatrang.com\/wp-json\/wp\/v2\/media\/2606"}],"wp:attachment":[{"href":"https:\/\/congviennghiatrang.com\/wp-json\/wp\/v2\/media?parent=2605"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/congviennghiatrang.com\/wp-json\/wp\/v2\/categories?post=2605"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/congviennghiatrang.com\/wp-json\/wp\/v2\/tags?post=2605"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}