<?xml version="1.0"?>
<oembed><version>1.0</version><provider_name>Pinkoi &#x8A2D;&#x8A08;&#x8A8C;</provider_name><provider_url>https://blog.pinkoi.com/tw</provider_url><author_name>Nicholas</author_name><author_url>https://blog.pinkoi.com/tw/author/pinkoieditor4/</author_url><title>&#x300C;&#x8336;&#x8981;&#x559D;&#x5F97;&#x7CBE;&#x7DFB;&#xFF0C;&#x624D;&#x6703;&#x559C;&#x6085;&#x3002;&#x300D;&#x7D30;&#x81A9;&#x53C8;&#x300C;&#x753A;&#x91D1;&#x300D;&#x7684;&#x53F0;&#x7063;&#x8336;&#xFF1A;&#x6DE1;&#x7136;&#x6709;&#x5473;&#x7684;&#x5F9E; 0 &#x5230; 1&#xFF5C;Pinkoi &#x5C0F;&#x4EBA;&#x7269;&#x5927;&#x54C1;&#x724C;&#x8A2D;&#x8A08;&#x7BC0; | Pinkoi &#x8A2D;&#x8A08;&#x8A8C;</title><type>rich</type><width>600</width><height>338</height><html>&lt;blockquote class="wp-embedded-content" data-secret="yLLGhvudNH"&gt;&lt;a href="https://blog.pinkoi.com/tw/interviews/danrantea/"&gt;&#x300C;&#x8336;&#x8981;&#x559D;&#x5F97;&#x7CBE;&#x7DFB;&#xFF0C;&#x624D;&#x6703;&#x559C;&#x6085;&#x3002;&#x300D;&#x7D30;&#x81A9;&#x53C8;&#x300C;&#x753A;&#x91D1;&#x300D;&#x7684;&#x53F0;&#x7063;&#x8336;&#xFF1A;&#x6DE1;&#x7136;&#x6709;&#x5473;&#x7684;&#x5F9E; 0 &#x5230; 1&#xFF5C;Pinkoi &#x5C0F;&#x4EBA;&#x7269;&#x5927;&#x54C1;&#x724C;&#x8A2D;&#x8A08;&#x7BC0;&lt;/a&gt;&lt;/blockquote&gt;&lt;iframe sandbox="allow-scripts" security="restricted" src="https://blog.pinkoi.com/tw/interviews/danrantea/embed/#?secret=yLLGhvudNH" width="600" height="338" title="&#x300C;&#x8336;&#x8981;&#x559D;&#x5F97;&#x7CBE;&#x7DFB;&#xFF0C;&#x624D;&#x6703;&#x559C;&#x6085;&#x3002;&#x300D;&#x7D30;&#x81A9;&#x53C8;&#x300C;&#x753A;&#x91D1;&#x300D;&#x7684;&#x53F0;&#x7063;&#x8336;&#xFF1A;&#x6DE1;&#x7136;&#x6709;&#x5473;&#x7684;&#x5F9E; 0 &#x5230; 1&#xFF5C;Pinkoi &#x5C0F;&#x4EBA;&#x7269;&#x5927;&#x54C1;&#x724C;&#x8A2D;&#x8A08;&#x7BC0; &#x2014; Pinkoi &#x8A2D;&#x8A08;&#x8A8C;" data-secret="yLLGhvudNH" frameborder="0" marginwidth="0" marginheight="0" scrolling="no" class="wp-embedded-content"&gt;&lt;/iframe&gt;&lt;script&gt;
/**
 * WordPress inline HTML embed
 *
 * @since 4.4.0
 * @output wp-includes/js/wp-embed.js
 *
 * Single line comments should not be used since they will break
 * the script when inlined in get_post_embed_html(), specifically
 * when the comments are not stripped out due to SCRIPT_DEBUG
 * being turned on.
 */
(function ( window, document ) {
	'use strict';

	/* Abort for ancient browsers. */
	if ( ! document.querySelector || ! window.addEventListener || typeof URL === 'undefined' ) {
		return;
	}

	/** @namespace wp */
	window.wp = window.wp || {};

	/* Abort if script was already executed. */
	if ( !! window.wp.receiveEmbedMessage ) {
		return;
	}

	/**
	 * Receive embed message.
	 *
	 * @param {MessageEvent} e
	 */
	window.wp.receiveEmbedMessage = function( e ) {
		var data = e.data;

		/* Verify shape of message. */
		if (
			! ( data || data.secret || data.message || data.value ) ||
			/[^a-zA-Z0-9]/.test( data.secret )
		) {
			return;
		}

		var iframes = document.querySelectorAll( 'iframe[data-secret="' + data.secret + '"]' ),
			blockquotes = document.querySelectorAll( 'blockquote[data-secret="' + data.secret + '"]' ),
			allowedProtocols = new RegExp( '^https?:$', 'i' ),
			i, source, height, sourceURL, targetURL;

		for ( i = 0; i &lt; blockquotes.length; i++ ) {
			blockquotes[ i ].style.display = 'none';
		}

		for ( i = 0; i &lt; iframes.length; i++ ) {
			source = iframes[ i ];

			if ( e.source !== source.contentWindow ) {
				continue;
			}

			source.removeAttribute( 'style' );

			if ( 'height' === data.message ) {
				/* Resize the iframe on request. */
				height = parseInt( data.value, 10 );
				if ( height &gt; 1000 ) {
					height = 1000;
				} else if ( ~~height &lt; 200 ) {
					height = 200;
				}

				source.height = height;
			} else if ( 'link' === data.message ) {
				/* Link to a specific URL on request. */
				sourceURL = new URL( source.getAttribute( 'src' ) );
				targetURL = new URL( data.value );

				if (
					allowedProtocols.test( targetURL.protocol ) &amp;&amp;
					targetURL.host === sourceURL.host &amp;&amp;
					document.activeElement === source
				) {
					window.top.location.href = data.value;
				}
			}
		}
	};

	function onLoad() {
		var iframes = document.querySelectorAll( 'iframe.wp-embedded-content' ),
			i, source, secret;

		for ( i = 0; i &lt; iframes.length; i++ ) {
			/** @var {IframeElement} */
			source = iframes[ i ];

			secret = source.getAttribute( 'data-secret' );
			if ( ! secret ) {
				/* Add secret to iframe */
				secret = Math.random().toString( 36 ).substring( 2, 12 );
				source.src += '#?secret=' + secret;
				source.setAttribute( 'data-secret', secret );
			}

			/*
			 * Let post embed window know that the parent is ready for receiving the height message, in case the iframe
			 * loaded before wp-embed.js was loaded. When the ready message is received by the post embed window, the
			 * window will then (re-)send the height message right away.
			 */
			source.contentWindow.postMessage( {
				message: 'ready',
				secret: secret
			}, '*' );
		}
	}

	window.addEventListener( 'message', window.wp.receiveEmbedMessage, false );
	document.addEventListener( 'DOMContentLoaded', onLoad, false );
})( window, document );
//# sourceURL=https://blog.pinkoi.com/tw/wp-includes/js/wp-embed.js
&lt;/script&gt;
</html><thumbnail_url>https://cdn02.pinkoi.com/wp-content/uploads/sites/7/2023/06/13100220/%E5%93%81%E7%89%8C%E6%95%85%E4%BA%8B-3_%E4%BF%AE%E9%A3%BE-%E6%8B%B7%E8%B2%9D-1.jpg</thumbnail_url><thumbnail_width>2048</thumbnail_width><thumbnail_height>1136</thumbnail_height><description>&#x6DE1;&#x7136;&#x6709;&#x5473;&#xFF08;Danran Tea&#xFF09;&#x7531;&#x71B1;&#x611B;&#x8336;&#x6587;&#x5316;&#x7684;&#x5B98;&#x5BB6;&#x59CA;&#x59B9;&#x6240;&#x5275;&#x8FA6;&#xFF1A;&#x59CA;&#x59CA;&#x662F;&#x4F4D;&#x64C1;&#x6709; 25 &#x5E74;&#x6DF1;&#x539A;&#x7D93;&#x9A57;&#x7684;&#x8336;&#x9053;&#x8001;&#x5E2B;&#xFF0C;&#x59B9;&#x59B9;&#x5247;&#x662F;&#x570B;&#x5BB6;&#x8A8D;&#x8B49;&#x7684;&#x5C08;&#x696D;&#x54C1;&#x8336;&#x5E2B;&#x3002;&#x9577;&#x5E74;&#x4F86;&#xFF0C;&#x5979;&#x5011;&#x6C81;&#x6C90;&#x5728;&#x8336;&#x9053;&#x5E36;&#x4F86;&#x7684;&#x7F8E;&#x597D;&#x4E2D;&#xFF0C;&#x4EE5;&#x81EA;&#x6211;&#x7684;&#x751F;&#x547D;&#x6B77;&#x7A0B;&#xFF0C;&#x919E;&#x91C0;&#x51FA;&#x300C;&#x7D30;&#x975C;&#x6162;&#x6D3B;&#x300D;&#x4E4B;&#x751F;&#x6D3B;&#x7F8E;&#x5B78;&#x3002;&#x753A;&#x91D1;&#x7CBE;&#x795E;&#x70BA;&#x6DE1;&#x7136;&#x6709;&#x5473;&#x79C9;&#x6301;&#x7684;&#x4F01;&#x696D;&#x6587;&#x5316;&#xFF0C;&#x300C;&#x753A;&#x91D1;&#x300D;&#x540C;&#x97F3;&#x5B57;&#x300C;&#x9802;&#x771F;&#x300D;&#xFF0C;&#x53F0;&#x7063;&#x8A71;&#x7684;&#x610F;&#x601D;&#x662F;&#x300C;&#x7D55;&#x5C0D;&#x8A8D;&#x771F;&#x300D;&#x3002;</description></oembed>
