wpdm_user_dashboard_menu

Description Use this filter to add menu items with user dashboard or remove any menu item from user dashboard Parameters One parameter is passed to this hook. Usage To add new tabs Under Package Settings section. <?php add_filter(‘wpdm_user_dashboard_menu’,’my_custom_dashboard_menus’,10,1);  ?> Examples <?php add_filter(‘wpdm_user_dashboard_menu’,’my_custom_dashboard_menus’,10,1); // $menu_items is an array containing current menu items function my_custom_dashboard_menus($menu_items){ // Removing … Continue reading wpdm_user_dashboard_menu