This puts the comment description into Stripe…
function wp_stripe_charge($amount, $card, $description) {
/* Currency - All amounts must be denominated in USD when creating charges with Stripe — the currency conversion happens automatically */
$currency = 'usd';
/* Card - Token from stripe.js is provided (not individual card elements)*/
$opts = array(
'card' => $card,
'amount' => $amount,
'currency' => $currency
);
if ( $description ) {
$opts['description'] = $description;
}
$charge = Stripe_Charge::create($opts);
return $charge;
}