-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsingle-crowdfunding.php
43 lines (37 loc) · 1.75 KB
/
single-crowdfunding.php
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
31
32
33
34
35
36
37
38
39
40
41
42
43
<?php
defined( 'ABSPATH' ) || exit;
get_header('shop');
do_action( 'wpcf_before_single_campaign' );
if ( post_password_required() ) {
echo get_the_password_form();
return;
}
?>
<div class="wpneo-wrapper">
<div class="wpneocf-container">
<div id="primary" class="content-area">
<div id="content" class="site-content" role="main">
<div class="wpneo-list-details">
<?php while ( have_posts() ) : the_post(); ?>
<?php do_action( 'wpcf_before_main_content' ); ?>
<div itemscope itemtype="http://schema.org/ItemList" id="campaign-<?php the_ID(); ?>" <?php post_class(); ?>>
<?php do_action( 'wpcf_before_single_campaign_summary' ); ?>
<div class="wpneo-campaign-summary">
<div class="wpneo-campaign-summary-inner" itemscope itemtype="http://schema.org/DonateAction">
<?php do_action( 'wpcf_single_campaign_summary' ); ?>
</div><!-- .wpneo-campaign-summary-inner -->
</div><!-- .wpneo-campaign-summary -->
<?php do_action( 'wpcf_after_single_campaign_summary' ); ?>
<meta itemprop="url" content="<?php the_permalink(); ?>" />
</div><!-- #campaign-<?php the_ID(); ?> -->
<?php do_action( 'wpcf_after_single_campaign' ); ?>
<?php do_action( 'wpcf_after_main_content' ); ?>
<?php endwhile; // end of the loop. ?>
</div>
</div><!-- #content -->
</div><!-- #primary -->
</div>
</div>
<?php
get_footer('shop');
?>