mirror of
https://github.com/WordPress/WordPress.git
synced 2024-11-04 01:39:37 +01:00
10c6b7ea9c
git-svn-id: http://svn.automattic.com/wordpress/trunk@1108 1a063a9b-81f0-0310-95a4-ce76da25c4cd
13 lines
544 B
PHP
13 lines
544 B
PHP
<?php
|
|
/*
|
|
Plugin Name: Hello Dolly
|
|
Plugin URI: http://wordpress.org/#
|
|
Description: This is not just a plugin, it symbolizes the hope and enthusiasm of an entire generation summed up in two words sung most famously by Louis Armstrong. Hello, Dolly. This is, by the way, the world's first official WordPress plugin. When enabled you will randomly see a lyric from <cite>Hello, Dolly</cite> in the upper right of your admin screen.
|
|
Author: Matt Mullenweg
|
|
Author URI: http://photomatt.net/
|
|
*/
|
|
|
|
function hello_dolly() {
|
|
echo "It's me, Dolly.";
|
|
}
|
|
?>
|