


{"version":"1.0","provider_name":"\u98c4\u96c5\u6d3b\u85dd","provider_url":"https:\/\/www.craftsonpeel.wecreatelabs.com.hk\/zh-hant\/","author_name":"Crafts on Peel Staff","author_url":"https:\/\/www.craftsonpeel.wecreatelabs.com.hk\/zh-hant\/author\/craftsonpeel_admin\/","title":"\u8f1d\u591c - \u98c4\u96c5\u6d3b\u85dd","type":"rich","width":600,"height":338,"html":"<blockquote class=\"wp-embedded-content\" data-secret=\"uR8q6iP0pf\"><a href=\"https:\/\/www.craftsonpeel.wecreatelabs.com.hk\/zh-hant\/artwork\/%e8%bc%9d%e5%a4%9c\/\">\u8f1d\u591c<\/a><\/blockquote><iframe sandbox=\"allow-scripts\" security=\"restricted\" src=\"https:\/\/www.craftsonpeel.wecreatelabs.com.hk\/zh-hant\/artwork\/%e8%bc%9d%e5%a4%9c\/embed\/#?secret=uR8q6iP0pf\" width=\"600\" height=\"338\" title=\"&#8220;\u8f1d\u591c&#8221; &#8212; \u98c4\u96c5\u6d3b\u85dd\" data-secret=\"uR8q6iP0pf\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\" class=\"wp-embedded-content\"><\/iframe><script type=\"text\/javascript\">\n\/* <![CDATA[ *\/\n\/**\n * WordPress inline HTML embed\n *\n * @since 4.4.0\n * @output wp-includes\/js\/wp-embed.js\n *\n * Single line comments should not be used since they will break\n * the script when inlined in get_post_embed_html(), specifically\n * when the comments are not stripped out due to SCRIPT_DEBUG\n * being turned on.\n *\/\n(function ( window, document ) {\n\t'use strict';\n\n\t\/* Abort for ancient browsers. *\/\n\tif ( ! document.querySelector || ! window.addEventListener || typeof URL === 'undefined' ) {\n\t\treturn;\n\t}\n\n\t\/** @namespace wp *\/\n\twindow.wp = window.wp || {};\n\n\t\/* Abort if script was already executed. *\/\n\tif ( !! window.wp.receiveEmbedMessage ) {\n\t\treturn;\n\t}\n\n\t\/**\n\t * Receive embed message.\n\t *\n\t * @param {MessageEvent} e\n\t *\/\n\twindow.wp.receiveEmbedMessage = function( e ) {\n\t\tvar data = e.data;\n\n\t\t\/* Verify shape of message. *\/\n\t\tif (\n\t\t\t! ( data || data.secret || data.message || data.value ) ||\n\t\t\t\/[^a-zA-Z0-9]\/.test( data.secret )\n\t\t) {\n\t\t\treturn;\n\t\t}\n\n\t\tvar iframes = document.querySelectorAll( 'iframe[data-secret=\"' + data.secret + '\"]' ),\n\t\t\tblockquotes = document.querySelectorAll( 'blockquote[data-secret=\"' + data.secret + '\"]' ),\n\t\t\tallowedProtocols = new RegExp( '^https?:$', 'i' ),\n\t\t\ti, source, height, sourceURL, targetURL;\n\n\t\tfor ( i = 0; i < blockquotes.length; i++ ) {\n\t\t\tblockquotes[ i ].style.display = 'none';\n\t\t}\n\n\t\tfor ( i = 0; i < iframes.length; i++ ) {\n\t\t\tsource = iframes[ i ];\n\n\t\t\tif ( e.source !== source.contentWindow ) {\n\t\t\t\tcontinue;\n\t\t\t}\n\n\t\t\tsource.removeAttribute( 'style' );\n\n\t\t\tif ( 'height' === data.message ) {\n\t\t\t\t\/* Resize the iframe on request. *\/\n\t\t\t\theight = parseInt( data.value, 10 );\n\t\t\t\tif ( height > 1000 ) {\n\t\t\t\t\theight = 1000;\n\t\t\t\t} else if ( ~~height < 200 ) {\n\t\t\t\t\theight = 200;\n\t\t\t\t}\n\n\t\t\t\tsource.height = height;\n\t\t\t} else if ( 'link' === data.message ) {\n\t\t\t\t\/* Link to a specific URL on request. *\/\n\t\t\t\tsourceURL = new URL( source.getAttribute( 'src' ) );\n\t\t\t\ttargetURL = new URL( data.value );\n\n\t\t\t\tif (\n\t\t\t\t\tallowedProtocols.test( targetURL.protocol ) &&\n\t\t\t\t\ttargetURL.host === sourceURL.host &&\n\t\t\t\t\tdocument.activeElement === source\n\t\t\t\t) {\n\t\t\t\t\twindow.top.location.href = data.value;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t};\n\n\tfunction onLoad() {\n\t\tvar iframes = document.querySelectorAll( 'iframe.wp-embedded-content' ),\n\t\t\ti, source, secret;\n\n\t\tfor ( i = 0; i < iframes.length; i++ ) {\n\t\t\t\/** @var {IframeElement} *\/\n\t\t\tsource = iframes[ i ];\n\n\t\t\tsecret = source.getAttribute( 'data-secret' );\n\t\t\tif ( ! secret ) {\n\t\t\t\t\/* Add secret to iframe *\/\n\t\t\t\tsecret = Math.random().toString( 36 ).substring( 2, 12 );\n\t\t\t\tsource.src += '#?secret=' + secret;\n\t\t\t\tsource.setAttribute( 'data-secret', secret );\n\t\t\t}\n\n\t\t\t\/*\n\t\t\t * Let post embed window know that the parent is ready for receiving the height message, in case the iframe\n\t\t\t * loaded before wp-embed.js was loaded. When the ready message is received by the post embed window, the\n\t\t\t * window will then (re-)send the height message right away.\n\t\t\t *\/\n\t\t\tsource.contentWindow.postMessage( {\n\t\t\t\tmessage: 'ready',\n\t\t\t\tsecret: secret\n\t\t\t}, '*' );\n\t\t}\n\t}\n\n\twindow.addEventListener( 'message', window.wp.receiveEmbedMessage, false );\n\tdocument.addEventListener( 'DOMContentLoaded', onLoad, false );\n})( window, document );\n\/\/# sourceURL=https:\/\/www.craftsonpeel.wecreatelabs.com.hk\/wp-includes\/js\/wp-embed.js\n\/* ]]> *\/\n<\/script>\n","thumbnail_url":"https:\/\/www.craftsonpeel.wecreatelabs.com.hk\/wp-content\/uploads\/2025\/12\/GTL_4640.jpg","thumbnail_width":2048,"thumbnail_height":2048,"description":"\u9019\u4ef6\u4f5c\u54c1\u4ee5\u5377\u8ef8\u756b\u7684\u5f62\u5f0f\u69cb\u5efa\uff0c\u63cf\u7e6a\u7af9\u6797\u591c\u8272\u7684\u5834\u666f\uff0c\u8ff0\u8aaa\u8f1d\u591c\u59ec\u7684\u50b3\u8aaa\u3002\u9019\u500b\u65e5\u672c\u6c11\u9593\u6545\u4e8b\u4ee5\u795e\u79d8\u5c11\u5973\u8f1d\u591c\u7684\u751f\u547d\u65c5\u7a0b\u70ba\u4e3b\u8ef8\u2014\u2014\u5979\u6700\u521d\u88ab\u767c\u73fe\u5728\u7af9\u8396\u4e2d\u8a95\u751f\uff0c\u7531\u7af9\u5de5\u85dd\u5e2b\u64ab\u990a\u9577\u5927\uff0c\u6545\u4e8b\u6df1\u523b\u63a2\u8a0e\u4eba\u8207\u81ea\u7136\u4e4b\u9593\u5e7d\u5fae\u7684\u727d\u7d46\u3002\u4e0d\u898f\u5247\u7684\u7af9\u7d30\u5de5\u6280\u6cd5\u4ea4\u932f\u7e8f\u7d50\uff0c\u5f62\u6210\u300c\u9670\u300d\u8207\u300c\u967d\u300d\u7684\u4e26\u7f6e\u5c0d\u8a71\uff0c\u5728\u69cb\u5716\u4e0a\u9054\u5230\u5b8c\u7f8e\u7684\u5e73\u8861\u3002\u900f\u904e\u7d2e\u4f5c\u5de5\u85dd\u7684\u904b\u7528\uff0c\u5851\u9020\u96f2\u6735\u7b49\u5177\u8c61\u5143\u7d20\u7684\u5851\u9020\uff0c\u9032\u4e00\u6b65\u85c9\u7531\u8996\u89ba\u6558\u4e8b\u5f37\u5316\u4f5c\u54c1\u7684\u8ff7\u4eba\u4e4b\u8655\u3002\u897f\u672c\u6709\u8207\u8b1d\u65fb\u8491\u4f86\u81ea\u5169\u500b\u622a\u7136\u4e0d\u540c\u7684\u6587\u5316\u80cc\u666f\uff0c\u5728\u7af9\u85dd\u5275\u4f5c\u65b9\u9762\u4e5f\u5404\u6709\u5343\u79cb\u3002\u897f\u672c\u6709\u4e3b\u8981\u904b\u7528\u771f\u7af9\uff0c\u6b64\u7af9\u7a2e\u5728\u65e5\u672c\u8cc7\u6e90\u8c50\u5bcc\uff0c\u4ee5\u5176\u7bc0\u9593\u7d30\u9577\u800c\u67d4\u97cc\u8457\u7a31\uff0c\u3002\u4ed6\u901a\u5e38\u4f7f\u7528\u5df2\u9664\u6cb9\u53bb\u6fd5\u7684\u771f\u7af9\uff0c\u4f46\u4e5f\u6703\u89aa\u81ea\u5f9e\u7af9\u6797\u4e2d\u63a1\u6458\u65b0\u9bae\u9752\u7af9\uff0c\u7528\u65bc\u88fd\u4f5c\u7b77\u5b50\u7b49\u7cbe\u7dfb\u7684\u4f5c\u54c1\u3002\u8207\u4e4b\u76f8\u53cd\uff0c\u8b1d\u6c0f\u5728\u9999\u6e2f\u63a1\u8cfc\u7684\u7af9\u5247\u6bd4\u771f\u7af9\u66f4\u7e96\u7d30\uff0c\u4e14\u7fd2\u6163\u4e0a\u4fdd\u7559\u4e86\u7af9\u5b50\u672c\u8eab\u7684\u6cb9\u5206\u548c\u6c34\u5206\u9032\u884c\u5de5\u85dd\u8655\u7406\u3002\u6b64\u7269\u6599\u4e0a\u7684\u9bae\u660e\u5c0d\u6bd4\uff0c\u70ba\u300c\u5de5\u85dd\u7814\u4fee\u8a08\u5283\u300d\u5960\u5b9a\u4e86\u96d9\u5411\u4ea4\u6d41\u7684\u57fa\u790e\u3002\u5169\u4f4d\u5de5\u85dd\u5e2b\u90fd\u5206\u5225\u5728\u5c0d\u65b9\u7684\u57ce\u5e02\u9032\u884c\u4e86\u99d0\u7559\u4ea4\u6d41\u3002"}