{"version":"1.0","provider_name":"\u9999\u6e2f\u6d78\u4fe1\u4f1a\u795e\u5b66\u9662","provider_url":"https:\/\/www.hkbts.edu.hk\/zh_cn","author_name":"wordpress_publish","author_url":"https:\/\/www.hkbts.edu.hk\/zh_cn\/?p=author\/wordpress_publish\/","title":"\u6559\u6703\u7684\u8fa8\u8b58 - \u9999\u6e2f\u6d78\u4fe1\u6703\u795e\u5b78\u9662","type":"rich","width":600,"height":338,"html":"<blockquote class=\"wp-embedded-content\" data-secret=\"ajFHE0Xkz7\"><a href=\"https:\/\/www.hkbts.edu.hk\/zh_cn\/presmessage\/the-discernment-of-the-church\/\">\u6559\u4f1a\u7684\u8fa8\u8bc6<\/a><\/blockquote><iframe sandbox=\"allow-scripts\" security=\"restricted\" src=\"https:\/\/www.hkbts.edu.hk\/zh_cn\/presmessage\/the-discernment-of-the-church\/embed\/#?secret=ajFHE0Xkz7\" width=\"600\" height=\"338\" title=\"\u300a \u6559\u4f1a\u7684\u8fa8\u8bc6\u300b\u2014\u9999\u6e2f\u6d78\u4fe1\u4f1a\u795e\u5b66\u9662\" data-secret=\"ajFHE0Xkz7\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\" class=\"wp-embedded-content\"><\/iframe><script>\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.hkbts.edu.hk\/wp-includes\/js\/wp-embed.js\n<\/script>","description":"\u5b78\u9662\u7c21\u4ecb \u8fd4\u56de\u4e3b\u9801 \u9662\u9577\u7684\u8a71 \u66f9\u5049\u5f64\u9662\u9577 \u6559\u6703\u7684\u8fa8\u8b58 \u5728\u4e0a\u4e00\u671f\u7684\u3008\u6559\u5c0e\uff1a\u77e5\u6240\u8fa8\u8b58\u3009\uff0c\u6211\u66fe\u6307\u51fa\u8fa8\u8b58\u4e0d\u662f\u4e00\u5957\u5728\u8b70\u6703\u5f0f\u8faf\u8ad6\u4e2d\u89e3\u6c7a\u554f\u984c\u7684\u65b9\u6cd5\uff0c\u800c\u662f\u4e00\u500b\u8ffd\u5c0b\u771f\u7406\u7684\u904e\u7a0b\u3002\u5b83\u66f4\u662f\u4e00\u7a2e\u5be6\u8e10\u667a\u6167\u7684\u884c\u52d5\u3002\u9019\u6a23\u7684\u8fa8\u8b58\u904e\u7a0b\u5305\u62ec\u300c\u6211\u5011\u6240\u611f\u89ba\u7684\u771f\u7406\u300d\u3001\u300c\u6211\u5011\u4e00\u540c\u601d\u8003\u6240\u5f97\u7684\u771f\u7406\u300d\u3001\u300c\u6211\u5011\u6240\u9818\u53d7\u7684\u771f\u7406\u300d\u3001\u300c\u6211\u5011\u5728\u79b1\u544a\u4e2d\u6240\u7d93\u6b77\u7684\u771f\u7406\u300d\u3002\u6982\u8a00\u4e4b\uff0c\u8fa8\u8b58\u662f\u8981\u5c0b\u6c42\u4e00\u500b\u66f4\u5168\u9762\u548c\u8c50\u76db\u7684\u771f\u7406\uff0c\u4e00\u500b\u80fd\u53eb\u4eba\u5f97\u81ea\u7531\u7684\u771f\u7406\u3002\u9019\u6a23\u7684\u771f\u7406\u80fd\u5e36\u4f86\u5fc3\u9748\u7684\u8f49\u5316\uff0c\u5e36\u4f86\u751f\u547d\u7684\u5354\u4f5c\u548c\u540c\u884c\u3002 \u6559\u6703\u7e7c\u627f\u8457\u5148\u77e5\u7684\u4fe1\u4ef0 \u3000\u3000\u4eca\u671f\u5c07\u5617\u8a66\u601d\u8003\u6559\u6703\u7684\u8fa8\u8b58\u3002\u5728\u601d\u8003\u6559\u6703\u7684\u8fa8\u8b58\u6642\uff0c\u6211\u5011\u5148\u8981\u56de\u6eaf\u820a\u7d04\u6642\u4ee3\uff0c\u5bdf\u770b\u6559\u6703\u6240\u7e7c\u627f\u8457\u7684\u5148\u77e5\u7684\u4fe1\u4ef0\u3002\u820a\u7d04\u6642\u4ee3\u7684\u5148\u77e5\u76e1\u5fc3\u76e1\u610f\u53bb\u8a8d\u8b58\u548c\u8e10\u884c\u795e\u7684\u65e8\u610f\uff0c\u4ed6\u5011\u7684\u884c\u52d5\u662f\u5177\u9ad4\u7684\u3001\u8c61\u5fb5\u6027\u7684\u6216\u95dc\u4fc2\u6027\u7684\uff0c\u4ed6\u5011\u7684\u8aaa\u8a71\u5305\u542b\u4e86\u8cac\u5099\u3001\u5be9\u5224\u3001\u547c\u559a\u8207\u9f13\u52f5\u3002\u4f8b\u5982\u4ee5\u897f\u7d50\u66fe\u8cac\u5099\u7576\u6642\u7684\u5047\u5148\u77e5\uff1a\u300c\u4ed6\u5011\u8a98\u60d1\u6211\u7684\u767e\u59d3\uff0c\u8aaa\uff1a\u300e\u5e73\u5b89\uff01\u300f\u5176\u5be6\u6c92\u6709\u5e73\u5b89\uff0c\u5c31\u50cf\u6709\u4eba\u7acb\u8d77\u7246\u58c1\uff0c\u4ed6\u5011\u5012\u7528\u672a\u6ce1\u900f\u7684\u7070\u62b9\u4e0a\u3002\u300d\uff08\u7d50\u5341\u4e0910\uff09\u4ee5\u897f\u7d50\u6307\u51fa\u9019\u6a23\u7684\u8b0a\u8a71\u6703\u5e36\u4f86\u795e\u7684\u5be9\u5224\uff1a\u300c\u6211\u7684\u624b\u5fc5\u653b\u64ca\u90a3\u898b\u865b\u5047\u7570\u8c61\u3001\u7528\u8b0a\u8a50\u5360\u535c\u7684\u5148\u77e5\uff0c\u4ed6\u5011\u5fc5\u4e0d\u5217\u5728\u6211\u767e\u59d3\u7684\u6703\u4e2d\u2026\u2026\u3002\u300d\uff08\u7d50\u5341\u4e099\uff09 \u3000\u3000\u4ee5\u8cfd\u4e9e\u4e5f\u5ba3\u4f48\u8036\u548c\u83ef\u5c07\u61f2\u6cbb\u4ee5\u8272\u5217\uff0c\u5bb9\u8b93\u5b50\u6c11\u6557\u5728\u5f37\u6b0a\u624b\u4e0a\u3002\u4ee5\u8cfd\u4e9e\u66f8\u8a18\u8ff0\uff1a\u300c\u8ab0\u5f9e\u6771\u65b9\u8208\u8d77\u4e00\u4eba\uff0c\u6191\u516c\u7fa9\u53ec\u4ed6\u4f86\u5230\u8173\u524d\u5462\uff1f\u8036\u548c\u83ef\u5c07\u5217\u570b\u4ea4\u7d66\u4ed6\uff0c\u4f7f\u4ed6\u7ba1\u8f44\u541b\u738b\uff0c\u628a\u4ed6\u5011\u5982\u7070\u5875\u4ea4\u8207\u4ed6\u7684\u5200\uff0c\u5982\u98a8\u5439\u7684\u788e\u7a2d\u4ea4\u8207\u4ed6\u7684\u5f13\u3002\u300d\uff08\u8cfd\u56db\u5341\u4e002\uff09\u4e0d\u904e\uff0c\u4ee5\u8cfd\u4e9e\u4e5f\u6307\u51fa\u795e\u6709\u80fd\u529b\u5283\u51fa\u53e6\u4e00\u53ef\u80fd\u6027\uff0c\u5728\u4e16\u754c\u4e4b\u4e2d\u5275\u9020\u65b0\u4e8b\u3002\u795e\u6709\u80fd\u529b\u52dd\u904e\u5df4\u6bd4\u502b\u7684\u6b0a\u52e2\uff0c\u89e3\u653e\u4ee5\u8272\u5217\u3002\u4ee5\u8cfd\u4e9e\u5728\u6d41\u4ea1\u7684\u65e5\u5b50\u50b3\u9054\u795e\u7684\u5ba3\u544a\uff1a\u300c\u60df\u6709\u6211\u662f\u8036\u548c\u83ef\uff1b\u9664\u6211\u4ee5\u5916\u6c92\u6709\u6551\u4e3b\u3002\u6211\u66fe\u6307\u793a\uff0c\u6211\u66fe\u62ef\u6551\uff0c\u6211\u66fe\u8aaa\u660e\uff0c\u4e26\u4e14\u5728\u4f60\u5011\u4e2d\u9593\u6c92\u6709\u5225\u795e\u3002\u2026\u2026\u56e0\u4f60\u5011\u7684\u7de3\u6545\uff0c\u6211\u5df2\u7d93\u6253\u767c\u4eba\u5230\u5df4\u6bd4\u502b\u53bb\uff1b\u4e26\u4e14\u6211\u8981\u4f7f\u8fe6\u52d2\u5e95\u4eba\u5982\u9003\u6c11\u2026\u2026\u3002\u770b\u54ea\uff0c\u6211\u8981\u505a\u4e00\u4ef6\u65b0\u4e8b\u2026\u2026\u3002\u300d\uff08\u8cfd\u56db\u5341\u4e0911-19\uff09\u5148\u77e5\u5c0d\u6b77\u53f2\u7684\u89e3\u91cb\u7684\u7368\u7279\u8655\uff0c\u5728\u65bc\u4ed6\u5011\u770b\u898b\u795e\u6d3b\u52d5\u5728\u4eba\u985e\u7684\u4e8b\u4ef6\u4e2d\uff0c\u770b\u898b\u4ee5\u8272\u5217\u7684\u6b77\u53f2\u662f\u795e\u65e8\u610f\u548c\u4eba\u5fc3\u610f\u7684\u4e92\u52d5\u3002 \u3000\u3000\u5148\u77e5\u5982\u4f55\u8fa8\u8b58\u795e\u7684\u65e8\u610f\uff1f\u5982\u4f55\u770b\u898b\u795e\u6d3b\u52d5\u65bc\u4eba\u985e\u7684\u4e8b\u4ef6\u4e2d\uff1f\u5148\u77e5\u80fd\u8fa8\u8b58\u653f\u6cbb\u529b\u91cf\u7684\u79fb\u52d5\u3001\u8ecd\u4e8b\u529b\u91cf\u7684\u5efa\u7acb\uff0c\u4e26\u6279\u5224\u793e\u6703\u7684\u6557\u58de\u3001\u6b3a\u58d3\u53ca\u8caa\u5a6a\u3002\u5148\u77e5\u7684\u89c0\u5bdf\u4e0d\u662f\u5f97\u529b\u65bc\u9ad8\u8d85\u7684\u667a\u80fd\uff0c\u800c\u662f\u6e90\u65bc\u9748\u6027\u7684\u89f8\u89ba\u3002\u4ed6\u5011\u90fd\u662f\u8207\u795e\u540c\u884c\u7684\u4eba\u3002\u795e\u4e0d\u50c5\u5411\u5148\u77e5\u7684\u982d\u8166\u8aaa\u8a71\uff0c\u9084\u5411\u4ed6\u5011\u7684\u5fc3\u9748\u8aaa\u8a71\uff0c\u53eb\u4ed6\u5011\u6709\u6240\u884c\u52d5\u3002\u5148\u77e5\u7684\u884c\u52d5\u5c31\u662f\u9806\u670d\u548c\u8aaa\u51fa\u795e\u7684\u8a71\u8a9e\u3002 \u6559\u6703\u7e7c\u627f\u8457\u4f7f\u5f92\u6642\u4ee3\u7684\u4fe1\u4ef0 \u3000\u3000\u5176\u6b21\uff0c\u6559\u6703\u4e5f\u7e7c\u627f\u8457\u4f7f\u5f92\u6642\u4ee3\u7684\u4fe1\u4ef0\u3002\u4f7f\u5f92\u6642\u4ee3\u7684\u6559\u6703\u770b\u898b\u795e\u5728\u4eba\u985e\u6b77\u53f2\u4e2d\u7684\u4ecb\u5165\u548c\u884c"}