Code-Snippets-Functions/Execute a function on a child site/Tutor LMS/remove-links-tutor-dashboard.txt

6 lines
191 B
Text

add_filter('tutor_dashboard/nav_items', 'remove_some_links_dashboard');
function remove_some_links_dashboard($links){
unset($links['reviews']);
unset($links['wishlist']);
return $links;
}