Scaffold Command¶
Generate WordPress code structures.
Quick Start¶
Subcommands¶
post-type¶
Generate custom post type.
Options:
| Option | Description |
|---|---|
--label TEXT |
Post type label |
--public |
Public post type |
--supports TEXT |
Supported features |
taxonomy¶
Generate taxonomy.
Options:
| Option | Description |
|---|---|
--label TEXT |
Taxonomy label |
--hierarchical |
Hierarchical taxonomy |
--post_types TEXT |
Associated post types |
plugin¶
Generate plugin.
theme¶
Generate theme.
child-theme¶
Generate child theme.
Examples¶
# Generate post type
praisonaiwp scaffold post-type book --label "Books" --public
# Generate taxonomy
praisonaiwp scaffold taxonomy genre --label "Genres" --hierarchical
# Generate plugin
praisonaiwp scaffold plugin my-plugin --plugin_name "My Plugin"
# Generate child theme
praisonaiwp scaffold child-theme twentytwentyfour my-child