Advertisement
Guest User

Untitled

a guest
Jul 20th, 2018
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. add_menu_page('User Contacts', 'User Contacts','manage_options', 'user-contacts','my_plugin_options');
  2. function my_plugin_options() {
  3. if ( !current_user_can( 'manage_options' ) ) {
  4. wp_die( __( 'You do not have sufficient permissions to access this page.' ) );
  5. }
  6. require_once(plugin_dir_path( __FILE__ ).'user-info.php');
  7. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement