2022-11-27 15:03:07 +00:00
|
|
|
<footer class="edd-blocks__download-footer">
|
|
|
|
<?php
|
|
|
|
$args = array(
|
|
|
|
'download_id' => get_the_ID(),
|
|
|
|
'align' => $block_attributes['purchase_link_align'],
|
|
|
|
'show_price' => (bool) $block_attributes['show_price'],
|
2023-06-05 11:21:17 +00:00
|
|
|
'direct' => 'direct' === edd_get_download_button_behavior( get_the_ID() ),
|
2022-11-27 15:03:07 +00:00
|
|
|
);
|
2023-06-05 11:21:17 +00:00
|
|
|
echo EDD\Blocks\Downloads\buy_button( $args ); // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped
|
2022-11-27 15:03:07 +00:00
|
|
|
?>
|
|
|
|
</footer>
|