Lines:
1 to 23 of 23
<?php /* Plugin Name: Hello Dolly Plugin URI: http://wordpress.org/plugins/hello-dolly/ 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. When activated you will randomly see a lyric from <cite>Hello, Dolly</cite> in the upper right of your admin screen on every page. Author: Matt Mullenweg Version: 1.7.2 Author URI: http://ma.tt/ */ /* function hello_dolly_get_lyric() – */ // This just echoes the chosen line, we'll position it later. /* function hello_dolly() – These are the lyrics to Hello Dolly */ // Now we set that function up to execute when the admin_notices action is called. add_action( 'admin_notices', 'hello_dolly' ); // We need some CSS to position the paragraph. /* function dolly_css() – */ add_action( 'admin_head', 'dolly_css' );