function my_dashboard_assets(){// Only load these scripts on the specific page where the dashboard is located if (is_page('student-dashboard')){// Enqueue the CSS file wp_enqueue_style('dashboard-styles',get_stylesheet_directory_uri() . '/assets/dashboard-styles.css');// Enqueue the JavaScript file wp_enqueue_script('dashboard-script',get_stylesheet_directory_uri() . '/assets/dashboard-script.js',array(),// Dependencies,like jQuery (none needed here) false,// Version number true // Load in the footer (important!))}}add_action('wp_enqueue_scripts','my_dashboard_assets');