Add items to the dark menu in WordPress

You would need to create a custom post type by adding this code to your functions.php file (only do this if you are comfortable with editing theme files if not you should use a plugin such as “Custom Post Type UI”): function custom_post_type() { $labels = array( ‘name’ => ‘Articles’, ‘singular_name’ => ‘Article’, ‘add_new’ => … Read more

Show Admin Menu

add_submenu_page() this function used to add submenu in Admin Menu Page. And You will remove submenu from wordpress admin using remove_submenu_page(). add_submenu_page() by default takes 7 parameters. add_submenu_page( string $parent_slug, string $page_title, string $menu_title, string $capability, string $menu_slug, callable $function = ”, int $position = null ) Write the following code in your functions.php file … Read more

Admin menu link with variable

You can use wp_get_current_user() function to retrieve user login data. Also use get_edit_profile_url() to get profile page link. Note: You can use wp_logout_url() function for logout url. Try following code: add_action( ‘wp_before_admin_bar_render’, ‘wpdd_admin_bar_edit’ ); function wpdd_admin_bar_edit() { global $wp_admin_bar; // Show username with profile link $current_user = wp_get_current_user(); $username = $current_user->user_login; $profile_link = get_edit_profile_url(); $wp_admin_bar->add_menu( … Read more