| Server IP : 127.0.0.1 / Your IP : 216.73.216.109 Web Server : Apache/2.4.54 (Win64) OpenSSL/1.1.1q PHP/8.1.10 System : Windows NT DESKTOP-E5T4RUN 10.0 build 19045 (Windows 10) AMD64 User : SERVERWEB ( 0) PHP Version : 8.1.10 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : C:/laragon/www/quilla/wp-content/plugins/wp-smushit/app/common/ |
Upload File : |
<?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/?utm_source=smush&utm_medium=plugin&utm_campaign=smush_footer_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/?utm_source=smush&utm_medium=plugin&utm_campaign=smush_footer_docs" target="_blank">
<?php esc_html_e( 'Docs', 'wp-smushit' ); ?>
</a></li>
<li><a href="https://wpmudev.com/hub-welcome/?utm_source=smush&utm_medium=plugin&utm_campaign=smush_footer_hub" target="_blank">
<?php esc_html_e( 'The Hub', 'wp-smushit' ); ?>
</a></li>
<li><a href="https://wpmudev.com/terms-of-service/?utm_source=smush&utm_medium=plugin&utm_campaign=smush_footer_tos" 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>