Skip to content

Instantly share code, notes, and snippets.

@WordPress-Handbuch
Created December 14, 2018 13:23
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save WordPress-Handbuch/27b5ca963ce73f2ab274cebe8ffaf7db to your computer and use it in GitHub Desktop.
Save WordPress-Handbuch/27b5ca963ce73f2ab274cebe8ffaf7db to your computer and use it in GitHub Desktop.
WordPress 5 Plugin: WH_Hello_World
<?php
/**
* @package WH_Hello_World
* @version 1.0.0
*/
/*
Plugin Name: WH Hello World
Plugin URI: https://wordpress-handbuch.com
Description: Testausgabe in Front- und Backend
Author: Richard Eisenmenger
Version: 1.0.0
Author URI: https://richard-eisenmenger.com
*/
function hello_world() {
echo "<script>alert('Hallo Welt!');</script>\n";
}
add_action( 'admin_head', 'hello_world' );
add_action( 'wp_head', 'hello_world' );
@Jakob1958
Copy link

Ich bin begeistet

@Jakob1958
Copy link

Keine Ahnung

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment