<?php
/*
Plugin Name: hello world
Plugin URI: http://www.bueltge.de/
Description: hello world - wir schreiben ein einfaches WP-Plugin
Version: 1.0
Author: Frank Bueltge
Author URI: http://www.bueltge.de/
Update Server: http://www.bueltge.de/wp-content/download/wp/
Min WP Version: 1.5
Max WP Version: 2.0.4
*/

function hello_world_head() {
    echo 
"<script type=\"text/javascript\" >alert(\"hello world\");</script>\n";
}

function 
hello_world_content($content) {
    return 
strtolower($content);
}

function 
hello_world_title($title) {
    
$title str_replace(' ''Unser erstes Plugin'$title);
    return 
$title;
}

add_action('wp_head''hello_world_head');
add_filter('the_content''hello_world_content');
add_filter('the_title''hello_world_title');
?>