{"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":"\u65b0\u300c\u6d78\u795e\u300d\u5be6\u8e10\u795e\u5b78\u4e4b\u8def - \u9999\u6e2f\u6d78\u4fe1\u6703\u795e\u5b78\u9662","type":"rich","width":600,"height":338,"html":"<blockquote class=\"wp-embedded-content\" data-secret=\"Qv8Asv6G5i\"><a href=\"https:\/\/www.hkbts.edu.hk\/zh_cn\/presmessage\/newlink-hkbtss-path-to-practical-theology\/\">\u65b0\u300c\u6d78\u795e\u300d\u5b9e\u8df5\u795e\u5b66\u4e4b\u8def<\/a><\/blockquote><iframe sandbox=\"allow-scripts\" security=\"restricted\" src=\"https:\/\/www.hkbts.edu.hk\/zh_cn\/presmessage\/newlink-hkbtss-path-to-practical-theology\/embed\/#?secret=Qv8Asv6G5i\" width=\"600\" height=\"338\" title=\"\u300a \u65b0\u300c\u6d78\u795e\u300d\u5b9e\u8df5\u795e\u5b66\u4e4b\u8def\u300b\u2014\u9999\u6e2f\u6d78\u4fe1\u4f1a\u795e\u5b66\u9662\" data-secret=\"Qv8Asv6G5i\" 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 \u65b0\u300c\u6d78\u795e\u300d\u66f4\u6df1\u5165\u7684\u5be6\u8e10\u795e\u5b78 \u5f9e\u6e20\u52d9\u4e8b\u4ef6\u8aaa\u8d77 \u7336\u8a18\u5f972009\u5e74\u521d\u6211\u525b\u5c31\u4efb\u9662\u9577\uff0c\u9996\u8981\u8655\u7406\u7684\u91cd\u5927\u4e8b\u4ef6\u4e4b\u4e00\uff0c\u5c31\u662f\u6e20\u52d9\u4e8b\u4ef6\uff0c\u4e8b\u7de3\u65bc2008\u5e74\u6e20\u52d9\u7f72\u6709\u610f\u5728\u672c\u9662\u897f\u6fb3\u6821\u820d\u65c1\u908a\u300c\u8a08\u5283\u7528\u4f5c\u653f\u5e9c\u3001\u6a5f\u69cb\u6216\u793e\u5340\u8a2d\u65bd\u767c\u5c55\u5730\u5340\u300d\uff08\u4ee5\u4e0b\u7c21\u7a31\u300c\u6ce5\u6d8cG\/IC\u300d\uff0c\u898b\u3010\u5716\u4e00\u3011\uff09\u8208\u5efa\u5927\u578b\u6c61\u6c34\u7cfb\u7d71\u53ca\u6cf5\u623f\uff0c\u7576\u6642\u672c\u9662\u5df2\u5411\u7576\u5c40\u63d0\u51fa\u5f37\u70c8\u53cd\u5c0d\u3002 \u3000\u30002009\u5e742\u67089\u65e5\uff0c\u672c\u9662\u610f\u5916\u767c\u73fe\u6e20\u52d9\u7f72\u5728\u5e74\u660e\u8def\u5730\u6bb5\u5f35\u8cbc\u7684\u901a\u544a\uff0c\u8868\u793a\u64ec\u65bc\u672c\u9662\u7c43\u7403\u5834\u9644\u8fd1\u5730\u65b9\u9032\u884c\u571f\u5730\u52d8\u6e2c\u5de5\u7a0b\u3002\u5728\u9644\u8fd1\u5c45\u6c11\u7684\u8acb\u6c42\u4e0b\uff0c\u6211\u5c31\u548c\u5b78\u9662\u884c\u653f\u540c\u5de5\u53ca\u5e7e\u4f4d\u5c08\u5bb6\uff0c\u8207\u6e20\u52d9\u7f72\u53ca\u5927\u57d4\u5340\u8b70\u6703\u5c55\u958b\u6d3d\u5546\uff0c\u4ee5\u60c5\u7406\u517c\u5099\u7684\u65b9\u5f0f\uff0c\u6307\u51fa\u7576\u5c40\u7684\u8aee\u8a62\u5de5\u4f5c\u6709\u56b4\u91cd\u4e0d\u8db3\u4e4b\u8655\uff0c\u4e26\u53cd\u5c0d\u7576\u5c40\u672a\u6709\u5145\u5206\u8aee\u8a62\u6c11\u610f\u3001\u672a\u6709\u8a8d\u771f\u8003\u616e\u5176\u4ed6\u9078\u5740\uff0c\u5c31\u8cbf\u7136\u5c55\u958b\u571f\u5730\u52d8\u6e2c\u5de5\u7a0b\u3002 \u3000\u3000\u5176\u6642\uff0c\u672c\u9662\u9080\u8acb\u9999\u6e2f\u516c\u958b\u5927\u5b78\uff08\u73fe\u540d\u300c\u9999\u6e2f\u90fd\u6703\u5927\u5b78\u300d\uff09\u79d1\u6280\u5b78\u9662\u524d\u9662\u9577\u4f55\u5efa\u5b97\u6559\u6388\u65bc2009\u5e749\u6708\u9032\u884c\u70ba\u671f\u56db\u500b\u6708\u7684\u897f\u6fb3\u74b0\u5883\u751f\u614b\u7814\u7a76\uff0c\u4e26\u5f97\u51fa\u4e00\u4efd\u7368\u7acb\u3001\u5ba2\u89c0\u7684\u7814\u7a76\u5831\u544a\uff0c\u8b49\u5be6\u6ce5\u6d8c\u548c\u897f\u6fb3\u6cbf\u5cb8\u5730\u5340\u662f\u591a\u7a2e\u6d77\u6d0b\u751f\u7269\u7684\u68f2\u606f\u4e4b\u6240\uff0c\u5177\u751f\u614b\u50f9\u503c\uff1b\u5176\u4e2d\u7f85\u5217\u4e86\u4e0d\u5b9c\u5728\u300c\u6ce5\u6d8cG\/IC\u300d\u8208\u5efa\u6c61\u6c34\u6cf5\u623f\u7684\u5be6\u8cea\u74b0\u5883\u7406\u64da\u3002 \u3000\u3000\u7d93\u904e\u6f2b\u9577\u800c\u8271\u9245\u7684\u52f8\u8aaa\u904e\u7a0b\uff0c\u6211\u5011\u7aed\u529b\u5411\u653f\u5e9c\u722d\u53d6\uff1a\u7576\u5c40\u9808\u5c31\u6b64\u9805\u76ee\u5c0d\u6ce5\u6d8c\u6d77\u7063\u53ca\u9130\u8fd1\u5730\u5340\u53ef\u80fd\u9020\u6210\u7684\u5f71\u97ff\u9032\u884c\u5168\u9762\u74b0\u5883\u8a55\u4f30\u7814\u7a76\u3002\u81f3\u6b64\uff0c\u7576\u5c40\u6c92\u6709\u5c31\u5efa\u8a2d\u5927\u578b\u6cf5\u623f\u4e8b\u5b9c\u4f5c\u51fa\u9032\u4e00\u6b65\u884c\u52d5\u3002 \u554f\u984c\u6b7b\u7070\u5fa9\u71c3 \u672c\u4ee5\u70ba\u4e8b\u4ef6\u5df2\u544a\u4e00\u6bb5\u843d\uff0c\u4f46\u5230\u4e862018\u5e746\u6708\uff0c\u624d\u767c\u73fe\u554f\u984c\u53c8\u597d\u50cf\u5ffd\u7136\u6b7b\u7070\u5fa9\u71c3\u3002\u7576\u6642\uff0c\u672c\u9662\u63a5\u7372\u5927\u57d4\u6c11\u653f\u4e8b\u52d9\u8655\u4f86\u51fd\uff0c\u8868\u793a\u6e20\u52d9\u7f72\u59d4\u8a17\u8a72\u8655\uff0c\u5c31\u8208\u5efa\u300c\u897f\u6fb3\u5e79\u6e20\u6c61\u6c34\u6cf5\u623f\u300d\u8aee\u8a62\u5730\u5340\u4eba\u58eb\u7684\u610f\u898b\u3002\u5b78\u9662\u6536\u5230\u8a72\u4fe1\u51fd\uff0c\u5b8c\u5168\u4e0d\u660e\u5c31\u88cf\uff0c\u9042\u99ac\u4e0a\u641c\u5c0b\u76f8\u95dc\u8cc7\u6599\uff0c\u624d\u767c\u73fe\u539f\u4f86\u57282014\u5e7412\u6708\uff0c\u6e20\u52d9\u7f72\u5df2\u5c07\u64ec\u8208\u5efa\u6c61\u6c34\u6cf5\u623f\u4e4b\u5730\u9ede\uff0c\u7531\u300c\u6ce5\u6d8cG\/IC\u300d\u9077\u79fb\u81f3\u5e74\u660e\u8def\u7684\u6c38\u4e45\u653f\u5e9c\u64a5\u5730\uff08\u5373\u795e\u5b78\u9662\u9580\u53e3\u4e00\u689d\u99ac\u8def\u4e4b\u9694\u7684\u5b98\u5730\uff0c\u898b\u3010\u5716\u4e8c\u3011\uff09\uff0c\u4e26\u5df2\u5c31\u8a72\u9078\u5740\u9032\u884c\u300c\u5168\u9762\u74b0\u8a55\u300d\u3002 \u3000\u3000\u6bd4\u5c0d\u6e20\u52d9\u7f72\u5206\u5225\u57282009\u5e74\u30012014\u5e74\u53ca2018\u5e74\u63d0\u51fa\u7684\u6c61\u6c34\u6cf5\u623f\u65b9\u6848\uff0c2018\u5e74\u63d0\u51fa\u7684\u65b9\u6848\uff0c\u7121\u8ad6\u5728\u9078\u5740\u6216\u898f\u6a21\u4e0a\uff0c\u90fd\u5c0d\u672c\u9662\u9020\u6210\u6700\u70ba\u6df1\u5ee3\u7684\u5f71\u97ff\u3002\u9078\u5740\u65b9\u9762\uff0c\u653f\u5e9c\u65bc2009\u5e74\u63d0\u51fa\u7684\u65b9\u6848\u662f\u5728\u795e\u5b78\u9662\u4ee5\u677160\u7c73\u8208\u5efa\u6c61\u6c34\u6cf5\u623f\uff1b\u4f462018\u5e74\u7684\u5efa\u8b70\uff0c\u7adf\u628a\u9078\u5740\u5927\u5e45\u62c9\u8fd1\u81f3\u795e\u5b78\u9662\u4ee5\u5317\u8ddd\u96e2\u50c55\u7c73\u7684\u7bc4\u570d\u3002\u898f\u6a21\u65b9\u9762\uff0c\u653f\u5e9c\u57282014\u5e74\u64ec\u5efa\u4e4b\u6c61\u6c34\u6cf5\u623f\uff0c\u6bcf\u65e5\u8655\u7406\u7684\u6c61\u6c34\u91cf\u70ba12,500\u7acb\u65b9\u7c73\uff1b\u4f462018\u5e74\u7684\u65b9\u6848\uff0c\u7adf\u5927\u5e45\u63d0\u5347\u81f320,600\u7acb\u65b9\u7c73\u3002 \u3000\u3000\u672c\u9662\u62db\u805a\u4e86\u9019\u65b9\u9762\u7684\u5e7e\u4f4d\u5c08\u5bb6\uff0c\u7d44\u6210\u7fa9\u52d9\u9867\u554f\u5718\uff08\u6838\u5fc3\u6210","thumbnail_url":"https:\/\/www4.hkbts.edu.hk\/wp-content\/uploads\/2024\/01\/202207_News_Photo_tc.jpg"}