Last active
April 19, 2020 16:09
-
-
Save radarin/2dfb19baaddfb49fecf23b805454177e to your computer and use it in GitHub Desktop.
WP Plugin initialisieren
This file contains 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 | |
defined( 'ABSPATH' ) or die( 'No script kiddies please!' ); | |
/* also read https://codex.wordpress.org/Writing_a_Plugin */ | |
/* | |
Plugin Name: Mein neues Plugin | |
Description: Das Plugin macht was es soll | |
Version: 0.1.01 | |
Date: 11.1.2019 | |
Author: Hans Muster | |
Author URI: https://domain.name/ | |
Plugin URI: http://domain.name/plugins/glossar/ | |
License: MIT License | |
License URI: http://opensource.org/licenses/MIT | |
Text Domain: glossar | |
Domain Path: /languages | |
Mein neues Plugin | |
Copyright (C) 2019, Hans Muster - info@domain.name | |
*/ | |
/* Plugin-Code UNTERhalb dieser Zeile */ | |
/* Plugin-Code OBERhalb dieser Zeile */ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment