-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCheckout.php
More file actions
30 lines (23 loc) · 752 Bytes
/
Checkout.php
File metadata and controls
30 lines (23 loc) · 752 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
<?php
/*
* Template Name: Checkout
*
* Easy Digital Downloads automatically creates multiple Pages when the
* plugin is installed and activated. This template is created for use
* with the Checkout page.
*
* To edit the Checkout template, do so in a child theme by COPYING
* and pasting the quota/templates/content-checkout.php file into your child
* folder in the same structural location. Then, WordPress will use your child
* theme's content-checkout.php file instead of Quota's.
*/
get_header(); ?>
<div class="container" id="checkout">
<?php
// start the loop
while ( have_posts() ) : the_post();
get_template_part( 'templates/content', 'checkout' );
endwhile; // end the loop
?>
</div>
<?php get_footer(); ?>