Skip to:
Content
Pages
Categories
Search
Top
Bottom

Re: How do I refer to current user’s name?


davidbessler
Member

@davidbessler

This is frustrating. Tell me why this simplest of all plugins does not work.

<?php

/*

Plugin Name: Add something to the header

Plugin URI: http://davidbessler.com

Description: My first plugin

Author: David Bessler

Author URI: http://davidbessler.com

Version: 1.0

*/

function add_something_to_the_header (){

echo "<!--Something I added-->n";

}

add_action ('bb_head' , 'add_something_to_the_header');

?>

Skip to toolbar