mirror of
https://ghproxy.net/https://github.com/AlxMedia/clearwork.git
synced 2025-08-26 14:41:56 +08:00
17 lines
442 B
PHP
17 lines
442 B
PHP
|
<?php if ( is_home() && !is_paged() && get_theme_mod('frontpage-widgets-bottom') == 'on' ): ?>
|
||
|
<div class="front-widgets group">
|
||
|
|
||
|
<div class="front-widget-col">
|
||
|
<div class="front-widget-inner">
|
||
|
<?php dynamic_sidebar( 'frontpage-bottom-1' ); ?>
|
||
|
</div>
|
||
|
</div>
|
||
|
|
||
|
<div class="front-widget-col">
|
||
|
<div class="front-widget-inner">
|
||
|
<?php dynamic_sidebar( 'frontpage-bottom-2' ); ?>
|
||
|
</div>
|
||
|
</div>
|
||
|
|
||
|
</div>
|
||
|
<?php endif; ?>
|