Created
September 12, 2024 18:31
-
-
Save everaldomatias/dd2fa243f9f9a2677e80e4612e9b32b4 to your computer and use it in GitHub Desktop.
Basic WordPress plugin structure
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* Plugin Name: Plugin Template | |
* Plugin URI: https://site.com.br | |
* Description: Plugin description. | |
* Version: 0.0.1 | |
* Requires at least: 5.2 | |
* Requires PHP: 7.2 | |
* Author: The dev/ | |
* Author URI: https://site.com.br | |
* License: GPL v2 or later | |
* License URI: https://www.gnu.org/licenses/gpl-2.0.html | |
* Update URI: https://site.com.br | |
* Text Domain: plugin-template | |
* Domain Path: /languages | |
*/ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment