footer-links.php
2.67 KB
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
<?php
/**
* Links in the footer.
*
* @package WP_Smush
*/
if ( ! defined( 'WPINC' ) ) {
die;
}
$hide_footer = false;
$footer_text = sprintf( /* translators: %s - icon */
esc_html__( 'Made with %s by WPMU DEV', 'wp-smushit' ),
'<span aria-hidden="true" class="sui-icon-heart"></span>'
);
if ( WP_Smush::is_pro() ) {
$hide_footer = apply_filters( 'wpmudev_branding_change_footer', $hide_footer );
$footer_text = apply_filters( 'wpmudev_branding_footer_text', $footer_text );
}
?>
<div class="sui-footer">
<?php echo wp_kses_post( $footer_text ); ?>
</div>
<ul class="sui-footer-nav">
<?php if ( ! WP_Smush::is_pro() ) : ?>
<li><a href="https://profiles.wordpress.org/wpmudev#content-plugins" target="_blank">
<?php esc_html_e( 'Free Plugins', 'wp-smushit' ); ?>
</a></li>
<li><a href="https://wpmudev.com/roadmap/" target="_blank">
<?php esc_html_e( 'Roadmap', 'wp-smushit' ); ?>
</a></li>
<li><a href="https://wordpress.org/support/plugin/wp-smushit" target="_blank">
<?php esc_html_e( 'Support', 'wp-smushit' ); ?>
</a></li>
<li><a href="https://wpmudev.com/docs/" target="_blank">
<?php esc_html_e( 'Docs', 'wp-smushit' ); ?>
</a></li>
<li><a href="https://wpmudev.com/hub-welcome/" target="_blank">
<?php esc_html_e( 'The Hub', 'wp-smushit' ); ?>
</a></li>
<li><a href="https://wpmudev.com/terms-of-service/" target="_blank">
<?php esc_html_e( 'Terms of Service', 'wp-smushit' ); ?>
</a></li>
<li><a href="https://incsub.com/privacy-policy/" target="_blank">
<?php esc_html_e( 'Privacy Policy', 'wp-smushit' ); ?>
</a></li>
<?php elseif ( ! $hide_footer ) : ?>
<li><a href="https://wpmudev.com/hub2/" target="_blank">
<?php esc_html_e( 'The Hub', 'wp-smushit' ); ?>
</a></li>
<li><a href="https://wpmudev.com/projects/category/plugins/" target="_blank">
<?php esc_html_e( 'Plugins', 'wp-smushit' ); ?>
</a></li>
<li><a href="https://wpmudev.com/roadmap/" target="_blank">
<?php esc_html_e( 'Roadmap', 'wp-smushit' ); ?>
</a></li>
<li><a href="https://wpmudev.com/hub2/support/" target="_blank">
<?php esc_html_e( 'Support', 'wp-smushit' ); ?>
</a></li>
<li><a href="https://wpmudev.com/docs/" target="_blank">
<?php esc_html_e( 'Docs', 'wp-smushit' ); ?>
</a></li>
<li><a href="https://wpmudev.com/hub2/community/" target="_blank">
<?php esc_html_e( 'Community', 'wp-smushit' ); ?>
</a></li>
<li><a href="https://wpmudev.com/terms-of-service/" target="_blank">
<?php esc_html_e( 'Terms of Service', 'wp-smushit' ); ?>
</a></li>
<li><a href="https://incsub.com/privacy-policy/" target="_blank">
<?php esc_html_e( 'Privacy Policy', 'wp-smushit' ); ?>
</a></li>
<?php endif; ?>
</ul>