我想为我的类别设置一个多选字段。我该怎么做?
我的代码不起作用:
function getCategories () {
var options = [];
var categories = wp.data.select(\'core\').getEntityRecords(\'taxonomy\', \'category\');
categories.forEach((category) => {
options.push({ value: category.id, label: category.name });
});
}
<SelectControl
multiple
label={__(\'Select a Post\')}
help={__(\'Select a post to display as a banner.\')}
options={getCategories}
/>