Skip to content

Instantly share code, notes, and snippets.

Created November 13, 2012 05:54
Show Gist options
  • Save anonymous/4064216 to your computer and use it in GitHub Desktop.
Save anonymous/4064216 to your computer and use it in GitHub Desktop.
$billingArray = array();
while (have_checkout_items()) : the_checkout_item();
array_push($billingArray, array(
"id" => form_element_id(),
"name" => checkout_form_name(),
"form" => checkout_form_field(),
));
echo "hey";
endwhile;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment