mirror of
https://gh.wpcy.net/https://github.com/wp-cli/scaffold-command.git
synced 2026-04-25 09:43:29 +08:00
18 lines
410 B
Text
18 lines
410 B
Text
<?php
|
|
/**
|
|
* Plugin Name: {{plugin_name}}
|
|
* Plugin URI: {{plugin_uri}}
|
|
* Description: {{plugin_description}}
|
|
* Author: {{plugin_author}}
|
|
* Author URI: {{plugin_author_uri}}
|
|
* Text Domain: {{textdomain}}
|
|
* Domain Path: /languages
|
|
* Version: 0.1.0
|
|
*
|
|
* @package {{plugin_package}}
|
|
*/
|
|
|
|
// Your code starts here.
|
|
if ( ! defined( 'ABSPATH' ) ) {
|
|
exit;
|
|
}
|