Les commandes WP CLI pour générer des fichiers.

Générer des fichiers utiles pour votre développement depuis l’outil des commandes WP CLI.

Créer une taxonomie personnalisée

BASH
                    # wp scaffold taxonomy {taxonomy} --post_types={post_types}
wp scaffold taxonomy director --post_types=movie

# Choisir le fichier de destination
# wp scaffold taxonomy {taxonomy} --post_types={post_types} > {file}
wp scaffold taxonomy director --post_types=movie > file.php
                

Créer un post_type personnalisé

BASH
                    # wp scaffold post-type {post_type_slug} --label={post_type_label} --theme={theme}
wp scaffold post-type movie --label=Movie --theme=your-theme

# Choisir le fichier de destination
# wp scaffold taxonomy {post_type_slug} --label={post_type_label} --theme={theme} > {file}
wp scaffold post-type movie --label=Movie --theme=your-theme > file.php
                

Créer un plugin

BASH
                    # wp scaffold plugin {plugin_slug}
wp scaffold plugin sample-plugin
                

Créer un thème enfant

BASH
                    # wp scaffold child-theme {child_theme_slug} --parent_theme={parent_theme_slug}
wp scaffold child-theme sample-theme --parent_theme=twentysixteen
                

Créer un block Gutenberg

BASH
                    # Créer un block pour un thème
# wp scaffold block {slug} --title={title} --theme={theme}
wp scaffold block movie --title="Movie block" --theme="your-theme"

# Créer un block pour un plugin
# wp scaffold block {slug} --title={title} --plugin={plugin}
wp scaffold block movie --title="Movie block" --plugin="your-plugin"