wishlist_button_menu_label

Add this code to the Theme’s functions.php file to add custom label of the wishlist menu.

add_filter('wishlist_button_menu_label', 'wishlist_button_menu_label_20201908', 5);

function wishlist_button_menu_label_20201908($menu_label){


    $menu_label = 'Custom text';

    return $menu_label;
}
wishlist_button_menu_label 1