ralfhortt / wordpress-client-plugin-boilerplate
There is no license information available for the latest version (0.5) of this package.
A WordPress Client Plugin Boilerplate
Package info
github.com/Horttcore/WordPress-Client-Plugin-Boilerplate
Type:wp-plugin
pkg:composer/ralfhortt/wordpress-client-plugin-boilerplate
0.5
2020-10-30 14:46 UTC
Requires
This package is auto-updated.
Last update: 2026-06-05 09:07:30 UTC
README
A WordPress Client Plugin Boilerplate
Installation
composer create-project ralfhortt/wordpress-client-plugin-boilerplate my-plugin
Setup
npm installoryarn- Edit the plugin header in
plugin.php - Replace namespace
RalfHortt/WordPressClientPluginBoilerplatewith your own - Update autoloader namespace in
composer.json - Replace textdomain
wordpress-client-plugin-boilerplatewith your own
Usage
PHP
- 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
Gutenberg
npm run watchfor development- Add custom blocks in
assets/js/blocks npm run productionfor published code
Changelog
2.0 - 2020-01-09
- Update dependencies
1.0 - 2019-10-17
- Initial release