<?xml version="1.0"?>
<oembed><version>1.0</version><provider_name>&#x4E2D;&#x7965;&#x98DF;&#x54C1;</provider_name><provider_url>https://www.chfoods.com.tw/jp</provider_url><title>&#x53F0;&#x6E7E;&#x5927;&#x624B;&#x30AF;&#x30C3;&#x30AD;&#x30FC;&#x30D6;&#x30E9;&#x30F3;&#x30C9;&#x3068;&#x30EC;&#x30A4;&#x30F3;&#x30DC;&#x30FC;&#x30E9;&#x30D6;&#x30DB;&#x30FC;&#x30E0;&#xFF12;&#xFF10;&#x5468;&#x5E74;&#x3001;&#x30B9;&#x30C8;&#x30FC;&#x30EA;&#x30FC;&#x30AB;&#x30FC;&#x3067;&#x53F0;&#x6E7E;&#x4E00;&#x5468;&#x3057;&#x307E;&#x3059;&#x3002;&#x5B50;&#x4F9B;&#x305F;&#x3061;&#x306B;&#x611B;&#x3092;&#x3044;&#x3063;&#x3071;&#x3044;&#x4E0E;&#x3048;&#x308B;&#x3053;&#x3068;&#x3092;&#x671B;&#x3093;&#x3067;&#x3044;&#x307E;&#x3059;&#x3002; | &#x4E2D;&#x7965;&#x98DF;&#x54C1;</title><type>rich</type><width>600</width><height>338</height><html>&lt;blockquote class="wp-embedded-content" data-secret="e7JkGKAQ5D"&gt;&lt;a href="https://www.chfoods.com.tw/jp/blog/rainbow-charity-organization/"&gt;&#x53F0;&#x6E7E;&#x5927;&#x624B;&#x30AF;&#x30C3;&#x30AD;&#x30FC;&#x30D6;&#x30E9;&#x30F3;&#x30C9;&#x3068;&#x30EC;&#x30A4;&#x30F3;&#x30DC;&#x30FC;&#x30E9;&#x30D6;&#x30DB;&#x30FC;&#x30E0;&#xFF12;&#xFF10;&#x5468;&#x5E74;&#x3001;&#x30B9;&#x30C8;&#x30FC;&#x30EA;&#x30FC;&#x30AB;&#x30FC;&#x3067;&#x53F0;&#x6E7E;&#x4E00;&#x5468;&#x3057;&#x307E;&#x3059;&#x3002;&#x5B50;&#x4F9B;&#x305F;&#x3061;&#x306B;&#x611B;&#x3092;&#x3044;&#x3063;&#x3071;&#x3044;&#x4E0E;&#x3048;&#x308B;&#x3053;&#x3068;&#x3092;&#x671B;&#x3093;&#x3067;&#x3044;&#x307E;&#x3059;&#x3002;&lt;/a&gt;&lt;/blockquote&gt;&lt;iframe sandbox="allow-scripts" security="restricted" src="https://www.chfoods.com.tw/jp/blog/rainbow-charity-organization/embed/#?secret=e7JkGKAQ5D" width="600" height="338" title="&#x201C;&#x53F0;&#x6E7E;&#x5927;&#x624B;&#x30AF;&#x30C3;&#x30AD;&#x30FC;&#x30D6;&#x30E9;&#x30F3;&#x30C9;&#x3068;&#x30EC;&#x30A4;&#x30F3;&#x30DC;&#x30FC;&#x30E9;&#x30D6;&#x30DB;&#x30FC;&#x30E0;&#xFF12;&#xFF10;&#x5468;&#x5E74;&#x3001;&#x30B9;&#x30C8;&#x30FC;&#x30EA;&#x30FC;&#x30AB;&#x30FC;&#x3067;&#x53F0;&#x6E7E;&#x4E00;&#x5468;&#x3057;&#x307E;&#x3059;&#x3002;&#x5B50;&#x4F9B;&#x305F;&#x3061;&#x306B;&#x611B;&#x3092;&#x3044;&#x3063;&#x3071;&#x3044;&#x4E0E;&#x3048;&#x308B;&#x3053;&#x3068;&#x3092;&#x671B;&#x3093;&#x3067;&#x3044;&#x307E;&#x3059;&#x3002;&#x201D; &#x2014; &#x4E2D;&#x7965;&#x98DF;&#x54C1;" data-secret="e7JkGKAQ5D" frameborder="0" marginwidth="0" marginheight="0" scrolling="no" class="wp-embedded-content"&gt;&lt;/iframe&gt;&lt;script type="text/javascript"&gt;
/* &lt;![CDATA[ */
/**
 * 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://www.chfoods.com.tw/wp-includes/js/wp-embed.js
/* ]]&gt; */
&lt;/script&gt;
</html><thumbnail_url>https://www.chfoods.com.tw/wp-content/uploads/2019/10/&#x5F69;&#x8679;&#x611B;&#x5BB6;20&#x5E74;-&#x5168;&#x53F0;&#x751F;&#x547D;&#x5712;&#x4E01;&#x9F4A;&#x6B61;&#x6176;.jpeg</thumbnail_url><thumbnail_width>1280</thumbnail_width><thumbnail_height>720</thumbnail_height><description>&#x5F69;&#x8679;&#x611B;&#x5BB6;20&#x9031;&#x5E74;&#x74B0;&#x5CF6;&#x6545;&#x4E8B;&#x8ECA;&#xFF0C;6&#x6708;20&#x65E5;&#x4E0A;&#x5348;&#x6B61;&#x6176;20&#x9031;&#x5E74;&#x5728;&#x53F0;&#x5317;&#x4E2D;&#x6CB9;&#x5927;&#x6A13;&#x570B;&#x5149;&#x6703;&#x8B70;&#x5EF3;&#x8209;&#x884C;&#x300C;&#x5317;&#x5340;&#x5FD7;&#x5DE5;&#x611F;&#x6069;&#x5927;&#x6703;&#x300D;&#xFF0C;&#x4F86;&#x81EA;&#x5404;&#x7E23;&#x5E02;800&#x591A;&#x540D;&#x5F69;&#x8679;&#x5ABD;&#x5ABD;&#x3001;&#x5FD7;&#x5DE5;&#x53CA;&#x5B69;&#x5B50;&#x71B1;&#x60C5;&#x53C3;&#x52A0;&#xFF0C;&#x73FE;&#x5834;&#x540C;&#x6642;&#x8868;&#x63DA;2&#x5E74;&#x3001;6&#x5E74;&#x3001;10&#x5E74;&#x53CA;15&#x5E74;&#x4EE5;&#x4E0A;&#x7684;&#x5FD7;&#x5DE5;&#x8001;&#x5E2B;&#x8207;&#x7238;&#x7238;&#x5ABD;&#x5ABD;&#xFF0C;&#x4E5F;&#x70BA;&#x65B0;&#x4EFB;&#x5718;&#x9577;&#x62AB;&#x639B;&#x9818;&#x5DFE;&#xFF0C;&#x611F;&#x8B1D;&#x4ED6;&#x5011;&#x9858;&#x610F;&#x966A;&#x5B69;&#x5B50;&#x591A;&#x8D70;&#x4E00;&#x54E9;&#x8DEF;&#xFF0C;&#x4EE5;&#x751F;&#x547D;&#x5F71;&#x97FF;&#x751F;&#x547D;&#x4F34;&#x4ED6;&#x5011;&#x9577;&#x5927;&#x3002;</description></oembed>
