Initial commit.

This commit is contained in:
Frank419
2024-08-20 07:44:34 +08:00
commit 942a4c151f
61 changed files with 7781 additions and 0 deletions
+18
View File
@@ -0,0 +1,18 @@
<?php
if ( !defined( 'WPINC' ) ) {
die;
}
?>
<?php if ( is_active_sidebar( 'below-content' ) ): ?>
<ul class="below-content-widgets">
<?php dynamic_sidebar( 'above-content' ); ?>
</ul>
<?php elseif ( user_can( get_current_user_id(), 'edit_theme_options' ) ): ?>
<ul class="below-content-widgets">
<li class="panel widget below-content-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; ?>