Wordpress admin menu not showing

admin

Administrator
Staff member
I'm building my first Worpess plugin. But 'hammu dating' is not showing up in the 'settings' panel in the wp-admin. The plugin is activated in the 'plugin' panel. I followed the instructions from <a href="http://codex.wordpress.org/Administration_Menus" rel="nofollow">here</a>.

Code:
add_action( 'admin_menu', 'hammenu' );

function hammenu() {
    add_options_page( 'Hammu Dating opties', 'Hammu Dating Opties', 'manage-options', 'hd_menu_1', 'hammu_options' );
}

function hammu_options() {
    if ( !current_user_can( 'manage_options' ) )  {
        wp_die( __( 'No rights' ) );
    }
    echo '&lt;div class="wrap"&gt;';
    echo '&lt;p&gt;Nothing interesting here, yet&lt;/p&gt;';
    echo '&lt;/div&gt;';
}

Note: this is just a part of the plugin code