https://github.com/rafaeloliveiraz/wp-plugin-starter
WP Plugin Starter - Tool to quickly start the basic structure of a WordPress plugin with support for multiple languages (Portuguese, English, Spanish).
https://github.com/rafaeloliveiraz/wp-plugin-starter
plugin-development template-plugin wordpress-development wordpress-plugin wp-plugin-starter
Last synced: about 17 hours ago
JSON representation
WP Plugin Starter - Tool to quickly start the basic structure of a WordPress plugin with support for multiple languages (Portuguese, English, Spanish).
- Host: GitHub
- URL: https://github.com/rafaeloliveiraz/wp-plugin-starter
- Owner: rafaeloliveiraz
- License: mit
- Created: 2024-06-21T13:34:44.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-06-21T17:10:36.000Z (over 1 year ago)
- Last Synced: 2025-02-20T12:38:45.593Z (11 months ago)
- Topics: plugin-development, template-plugin, wordpress-development, wordpress-plugin, wp-plugin-starter
- Language: Shell
- Homepage:
- Size: 23.4 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# WP Plugin Starter
WP Plugin Starter é uma ferramenta que facilita a criação de plugins para WordPress. Com scripts em três idiomas (inglês, português e espanhol), os desenvolvedores podem iniciar rapidamente a estrutura básica de um plugin.
## 🇧🇷 Português
### Descrição
WP Plugin Starter cria a estrutura básica de um plugin WordPress com arquivos e diretórios necessários, incluindo funções de ativação, desativação, e uma página de administração com uma mensagem de boas-vindas.
### Como Usar
1. **Navegue até o diretório de plugins do WordPress no terminal:**
```bash
cd /caminho/para/seu/wordpress/wp-content/plugins
```
2. **Baixe e execute o script em português:**
```bash
curl -s -o create-plugin-pt.sh https://raw.githubusercontent.com/rafaeloliveiraz/WP-Plugin-Starter/main/create-plugin-pt.sh && chmod +x create-plugin-pt.sh && ./create-plugin-pt.sh
```
3. **Siga as instruções interativas:**
- Digite o nome do plugin (Ex: Meu Plugin).
- Digite o nome do autor.
- Digite o site do autor.
- Digite a versão do plugin (Ex: 1.0).
4. **Após a execução, o script será automaticamente excluído.**
## 🇺🇸 English
### Description
WP Plugin Starter creates the basic structure of a WordPress plugin with the necessary files and directories, including activation, deactivation functions, and an admin page with a welcome message.
### How to Use
1. **Navigate to the WordPress plugins directory in the terminal:**
```bash
cd /path/to/your/wordpress/wp-content/plugins
```
2. **Download and run the script in English:**
```bash
curl -s -o create-plugin-en.sh https://raw.githubusercontent.com/rafaeloliveiraz/WP-Plugin-Starter/main/create-plugin-en.sh && chmod +x create-plugin-en.sh && ./create-plugin-en.sh
```
3. **Follow the interactive instructions:**
- Enter the plugin name (e.g., My Plugin).
- Enter the author name.
- Enter the author website.
- Enter the plugin version (e.g., 1.0).
4. After execution, the script will be automatically deleted.
## 🇪🇸 Español
### Descripción
WP Plugin Starter crea la estructura básica de un plugin de WordPress con los archivos y directorios necesarios, incluidas las funciones de activación, desactivación y una página de administración con un mensaje de bienvenida.
### Cómo Usar
1. **Navegue al directorio de plugins de WordPress en el terminal:**
```bash
cd /ruta/a/tu/wordpress/wp-content/plugins
```
2. **Descargue y ejecute el script en español:**
```bash
curl -s -o create-plugin-es.sh https://raw.githubusercontent.com/rafaeloliveiraz/WP-Plugin-Starter/main/create-plugin-es.sh && chmod +x create-plugin-es.sh && ./create-plugin-es.sh
```
3. **Siga las instrucciones interactivas:**
- Ingrese el nombre del plugin (Ej: Mi Plugin).
- Ingrese el nombre del autor.
- Ingrese el sitio web del autor.
- Ingrese la versión del plugin (Ej: 1.0).
4. Después de la ejecución, el script se eliminará automáticamente.