[Solved] how to move dashboard button to website menu if possible wordpress [closed]


Add this in your functions.php to add Dashboard link in your admin bar

add_action( 'admin_bar_menu', 'toolbar_second_dashboard_link', 999 );

function toolbar_second_dashboard_link( $wp_admin_bar ) {
    $args = array(
        'id'    => 'second-dashboard-link',
        'title' => 'Dashboard',
        'href'  => 'mysite.com/wp-admin/',
        'meta'  => array( 'class' => 'my-toolbar-page' )
    );
    $wp_admin_bar->add_node( $args );
}

Result – http://joxi.ru/Y2Lz1yOt9GKd9r

solved how to move dashboard button to website menu if possible wordpress [closed]