mirror of
https://gh.wpcy.net/https://github.com/mainwp/Code-Snippets-Functions.git
synced 2026-05-04 12:22:24 +08:00
5 lines
159 B
Text
5 lines
159 B
Text
add_filter('tutor_dashboard/instructor_nav_items', 'remove_some_links');
|
|
function remove_some_links($links) {
|
|
unset($links['assignments']);
|
|
return $links;
|
|
}
|