Hi agian,
I have solved the problem with forbidden with this code:
function new_nav_menu () {
global $menu;
$menu[600] = array('Profil', 'read', admin_url( 'profile.php' ), 'icon', 'menu-top menu-nav');
$menu[700] = array('Tillbaka till sidan', 'read', site_url(), 'icon', 'menu-top menu-nav');
$menu[800] = array('Logga ut', 'read', wp_logout_url(), 'icon', 'menu-top menu-nav');
}
add_action('admin_menu', 'new_nav_menu');
But now I whant them to open in a new window,
how can I do that?
Many thanks/
Granskog