certificate-link.php
951 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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
<?php
/**
* LearnDash LD30 Displays the certificate link
*
* @since 3.0.0
*
* @package LearnDash\Templates\LD30
*/
if ( ! defined( 'ABSPATH' ) ) {
exit;
}
/**
* Fires before the certificate link wrapper.
*
* @since 3.0.0
*/
do_action( 'learndash-certificate-wrapper-before' ); ?>
<div class="ld-course-certificate">
<?php
/**
* Fires before the certificate link.
*
* @since 3.0.0
*/
do_action( 'learndash-certificate-before' );
?>
<a href="<?php echo esc_url( $course_certficate_link ); ?>" class="ld-button"><span class="ld-icon ld-icon-certificate"></span> <?php esc_html_e( 'Download Certificate', 'learndash' ); ?></a>
<?php
/**
* Fires after the certificate link.
*
* @since 3.0.0
*/
do_action( 'learndash-certificate-after' );
?>
</div> <!--/.ld-course-certificate-->
<?php
/**
* Fires after the certificate link wrapper.
*
* @since 3.0.0
*/
do_action( 'learndash-certificate-wrapper-after' ); ?>