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
Post a Comment