13 lines
458 B
PHP
13 lines
458 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. Wish it did something useful.
|
||
|
Author: Matt Mullenweg
|
||
|
Author URI: http://photomatt.net
|
||
|
*/
|
||
|
|
||
|
function hello_dolly() {
|
||
|
echo "It's me, Dolly.";
|
||
|
}
|
||
|
?>
|