How to Add support for sub-menu item description in wordpress?

You are setting your $description to an empty string for any menu item except the top one:

   if($depth != 0)
   {
             $description = $append = $prepend = "";
   }

Thus, you get no output.