


{"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":"\u6797\u6c60 - \u98c4\u96c5\u6d3b\u85dd","type":"rich","width":600,"height":338,"html":"<blockquote class=\"wp-embedded-content\" data-secret=\"zPvKQpuR3A\"><a href=\"https:\/\/www.craftsonpeel.wecreatelabs.com.hk\/zh-hant\/crafts-men\/%e6%9e%97%e6%b1%a0\/\">\u6797\u6c60<\/a><\/blockquote><iframe sandbox=\"allow-scripts\" security=\"restricted\" src=\"https:\/\/www.craftsonpeel.wecreatelabs.com.hk\/zh-hant\/crafts-men\/%e6%9e%97%e6%b1%a0\/embed\/#?secret=zPvKQpuR3A\" width=\"600\" height=\"338\" title=\"&#8220;\u6797\u6c60&#8221; &#8212; \u98c4\u96c5\u6d3b\u85dd\" data-secret=\"zPvKQpuR3A\" 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\/2022\/01\/Master-Lam-Che.png","thumbnail_width":831,"thumbnail_height":900,"description":"\u6797\u6c60\u5e2b\u5085\u7684\u6728\u5de5\u4e4b\u8def\uff0c\u59cb\u65bc\u516b\u5341\u5e74\u4ee3\u3002\u81ea\u5f9e\u4e8b\u88dd\u4fee\u6f14\u8b8a\u81f3\u5f8c\u4f86\u4ee5\u6728\u6750\u88fd\u4f5c\u5de5\u85dd\u54c1\uff0c\u7686\u56e0\u4ed6\u5c0d\u6728\u6750\u7684\u73cd\u611b\u3001\u71b1\u60c5\u3002\u4ed6\u4e0d\u5fcd\u512a\u826f\u7684\u6728\u6750\uff0c\u5982\u5730\u677f\u3001\u9580\u6ac3\u7b49\uff0c\u96a8\u7740\u623f\u5c4b\u62c6\u5378\u800c\u6210\u70ba\u5efa\u7bc9\u5ee2\u6599\uff0c\u56e0\u6b64\u6bc5\u7136\u7acb\u5fc3\u56de\u6536\u548c\u5584\u7528\u820a\u6728\uff0c\u76e1\u7528\u6bcf\u4e00\u5206\u5bf8\u7684\u6728\u6750\u3002\u6797\u6c60\u5e2b\u5085\u56e0\u300c\u6728\u300d\u5236\u5b9c\uff0c\u56e0\u61c9\u5176\u7279\u8272\u800c\u5ef6\u7e8c\u6728\u6750\u7684\u7b2c\u4e8c\u751f\u547d\uff0c\u85c9\u6b64\u4fdd\u7559\u6728\u6750\u7684\u771f\u8c8c\u8207\u6b77\u53f2\u75d5\u8de1\uff0c\u4e26\u900f\u904e\u4f5c\u54c1\u8868\u9054\u74b0\u4fdd\u8a0a\u606f\u3002"}