register_block_core_query_pagination_previous

函数
register_block_core_query_pagination_previous ( No parameters )

register_block_core_query_pagination_previous: 这个函数用来注册WordPress块编辑器中的分页块的”previous”按钮。它用于导航到由查询返回的文章或其他内容的前一页。

在服务器上注册”core/query-pagination-previous”块。

function register_block_core_query_pagination_previous() {
	register_block_type_from_metadata(
		__DIR__ . '/query-pagination-previous',
		array(
			'render_callback' => 'render_block_core_query_pagination_previous',
		)
	);
}

常见问题

FAQs
查看更多 >