| Current Path : /home/xbodynamge/crosstraining/wp-content/themes/zerif-lite/ |
| Current File : /home/xbodynamge/crosstraining/wp-content/themes/zerif-lite/content-archive-download.php |
<?php
/**
* Content for Downloads archive
*
* @package zerif
*/
?>
<div class="edd_download" itemscope itemtype="http://schema.org/Product">
<div class="edd_download_inner">
<div class="edd_download_image">
<a href="<?php the_permalink(); ?>" title="<?php the_title_attribute(); ?>">
<?php
if ( has_post_thumbnail() ) { // check if the post has a Post Thumbnail assigned to it.
the_post_thumbnail();
}
?>
</a>
</div>
<?php the_title( '<h3 itemprop="name" class="edd_download_title">', '</h3>' ); ?>
<div itemprop="description" class="edd_download_excerpt">
<?php the_excerpt(); ?>
</div><!-- .entry-content -->
<?php
echo edd_get_purchase_link(
array(
'download_id' => get_the_ID(),
)
);
?>
</div>
</div><!-- #post-## -->