https://github.com/horttcore/wordpress-plugin-boilerplate
A WordPress plugin boilerplate
https://github.com/horttcore/wordpress-plugin-boilerplate
boilerplate plugin wordpress
Last synced: about 2 months ago
JSON representation
A WordPress plugin boilerplate
- Host: GitHub
- URL: https://github.com/horttcore/wordpress-plugin-boilerplate
- Owner: Horttcore
- Created: 2019-10-04T11:35:11.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2020-03-12T20:57:02.000Z (about 5 years ago)
- Last Synced: 2025-03-05T09:45:37.663Z (about 2 months ago)
- Topics: boilerplate, plugin, wordpress
- Language: PHP
- Homepage:
- Size: 14.6 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# WordPress Plugin Boilerplate
A WordPress Plugin Boilerplate
## Installation
`composer create-project ralfhortt/wordpress-plugin-boilerplate my-plugin`
## Setup
- Edit the plugin header in `plugin.php`
- Replace namespace `RalfHortt/WordPressPluginBoilerplate` with your own
- Update autoloader namespace in `composer.json`
- Replace textdomain `wordpress-plugin-boilerplate` with your own## Usage
- Services: Add a custom service in `src`
- Function: Add custom function in `inc/functions.php`
- Template Tags: Add custom template tags in `inc/template-tags.php`## Changelog
### 2020-09-01
* update dependencies
### 2019-10-17
* Initial release