register_block_core_latest_posts

函式
register_block_core_latest_posts ( No parameters )

register_block_core_latest_posts: 這個函式用來為Gutenberg編輯器註冊”最新文章”塊。該區塊顯示網站上的最新文章。

在伺服器上註冊”core/latest-posts”塊。

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
function register_block_core_latest_posts() {
register_block_type_from_metadata(
__DIR__ . '/latest-posts',
array(
'render_callback' => 'render_block_core_latest_posts',
)
);
}
function register_block_core_latest_posts() { register_block_type_from_metadata( __DIR__ . '/latest-posts', array( 'render_callback' => 'render_block_core_latest_posts', ) ); }
function register_block_core_latest_posts() {
	register_block_type_from_metadata(
		__DIR__ . '/latest-posts',
		array(
			'render_callback' => 'render_block_core_latest_posts',
		)
	);
}

常見問題

FAQs
檢視更多 >