MinimalistFlex/sidebar-footer-3.php
2024-08-20 07:44:34 +08:00

18 lines
608 B
PHP

<?php
if ( !defined( 'WPINC' ) ) {
die;
}
?>
<?php if ( is_active_sidebar( 'footer-3' ) ): ?>
<ul class="footer-3-widgets">
<?php dynamic_sidebar( 'footer-3' ); ?>
</ul>
<?php elseif ( user_can( get_current_user_id(), 'edit_theme_options' ) ): ?>
<ul class="footer-3-widgets">
<li class="panel widget footer-3-widget warning">
<?php esc_html_e( 'Sorry, but no widgets were found in this area.', 'minimalistflex' ); ?>
<?php esc_html_e( 'This message is displayed to administrators only.', 'minimalistflex' ); ?>
</li>
</ul>
<?php endif; ?>