Wordpress admin menu not showing -


i'm building first worpess plugin. 'hammu dating' not showing in 'settings' panel in wp-admin. plugin activated in 'plugin' panel. followed instructions here.

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 '<div class="wrap">';     echo '<p>nothing interesting here, yet</p>';     echo '</div>'; } 

note: part of plugin code

the add_options_page(); function carries wrong capability slug: manage-options use manage_options instead.

hope helps!


Comments

Popular posts from this blog

html - How to style widget with post count different than without post count -

How to remove text and logo OR add Overflow on Android ActionBar using AppCompat on API 8? -

javascript - storing input from prompt in array and displaying the array -