mirror of
https://gh.wpcy.net/https://github.com/mainwp/Code-Snippets-Functions.git
synced 2026-04-29 11:32:21 +08:00
6 lines
191 B
Text
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;
|
|
}
|