wp-advads
v1.0.22
Published
Create a Advanced Ads wordPress plugin eco system.
Downloads
41
Readme
WordPress Scaffolding
📃 Introduction
Quickly bootstrap your next awesome WordPress plugin with just one command!
💾 Installation
npx wp-advads
🕹 Usage
Create plugin
Run wp-advads make:plugin
command in your terminal and answer the questions and boom, it will auto-magically generate a WordPress plugin for you without stress!
npx wp-advads make:plugin
npx wp-advads make:plugin --folder=my-awesome-plugin
Create files
Generate files within the plugin folder using the answer from creating plugin step.
npx wp-advads make:file --file="Dashboard"
npx wp-advads make:file --file="Admin\Report\Dashboard"
npx wp-advads make:file --file="Admin\Report\Dashboard" --integration
npx wp-advads make:file --file="Admin\Report\Dashboard" --initializer
npx wp-advads make:file --file="Admin\Report\Dashboard" --routes
npx wp-advads make:file --file="Admin\Report\Dashboard" --singleton
- This one generate a file named
class-dashboard.php
inincludes
folder with namespace${rootNamespace}
. - This one generate a file name
class-dashboard.php
inincludes/admin/report
folder with namespace${rootNamespace}\Admin\Report
. - This one generate a file name
class-dashboard.php
inincludes/admin/report
folder with namespace${rootNamespace}\Admin\Report
and it will be a singleton class.
Create release
Create the release branch performing checks and tasks required for it.
npx wp-advads make:release