Initial commit

This commit is contained in:
Zhongwei Li
2025-11-29 18:25:36 +08:00
commit cfadf66888
24 changed files with 4160 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
/**
* Register ability category: {{LABEL}}
*
* {{DESCRIPTION}}
*
* Note: This must be called BEFORE registering abilities that use this category.
* Typically placed at the top of your abilities registration file.
*/
import { registerAbilityCategory } from '@wordpress/abilities';
await registerAbilityCategory('{{CATEGORY_NAME}}', {
label: '{{LABEL}}',
description: '{{DESCRIPTION}}',
});