ralfhortt / wordpress-client-plugin-boilerplate
A WordPress Client Plugin Boilerplate
Installs: 32
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 2
Forks: 2
Open Issues: 20
Type:wp-plugin
Requires
- dev-master
- 0.5
- 0.4
- 0.3
- 0.2
- 0.1
- dev-dependabot/npm_and_yarn/json5-1.0.2
- dev-dependabot/npm_and_yarn/express-4.18.2
- dev-dependabot/npm_and_yarn/qs-and-express-6.11.0
- dev-dependabot/npm_and_yarn/decode-uri-component-0.2.2
- dev-dependabot/npm_and_yarn/loader-utils-and-webpack-cli-and-resolve-url-loader-1.4.2
- dev-dependabot/npm_and_yarn/eventsource-1.1.1
- dev-dependabot/npm_and_yarn/async-2.6.4
- dev-dependabot/npm_and_yarn/url-parse-1.5.10
- dev-dependabot/npm_and_yarn/follow-redirects-1.14.8
- dev-dependabot/npm_and_yarn/ajv-6.12.6
- dev-dependabot/npm_and_yarn/path-parse-1.0.7
- dev-dependabot/npm_and_yarn/ws-6.2.2
- dev-dependabot/npm_and_yarn/dns-packet-1.3.4
- dev-dependabot/npm_and_yarn/browserslist-4.16.6
- dev-dependabot/npm_and_yarn/lodash-4.17.21
- dev-dependabot/npm_and_yarn/ssri-6.0.2
- dev-dependabot/npm_and_yarn/y18n-4.0.1
- dev-dependabot/npm_and_yarn/elliptic-6.5.4
- dev-dependabot/npm_and_yarn/ini-1.3.8
- dev-dependabot/npm_and_yarn/dot-prop-4.2.1
This package is auto-updated.
Last update: 2024-11-05 05:45:34 UTC
README
A WordPress Client Plugin Boilerplate
Installation
composer create-project ralfhortt/wordpress-client-plugin-boilerplate my-plugin
Setup
npm install
oryarn
- Edit the plugin header in
plugin.php
- Replace namespace
RalfHortt/WordPressClientPluginBoilerplate
with your own - Update autoloader namespace in
composer.json
- Replace textdomain
wordpress-client-plugin-boilerplate
with 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 watch
for development- Add custom blocks in
assets/js/blocks
npm run production
for published code
Changelog
2.0 - 2020-01-09
- Update dependencies
1.0 - 2019-10-17
- Initial release