mirror of
https://ghproxy.net/https://github.com/AlxMedia/magaziner.git
synced 2025-08-27 14:52:28 +08:00
15 lines
534 B
PHP
15 lines
534 B
PHP
|
<?php $sidebar = magaziner_sidebar_secondary(); ?>
|
||
|
|
||
|
<div class="sidebar s2 <?php if ( get_theme_mod( 'light-sidebar-widgets', 'off' ) != 'on' ): ?>dark<?php endif; ?>">
|
||
|
|
||
|
<a class="sidebar-toggle" title="<?php esc_attr_e('Expand Sidebar','magaziner'); ?>"><i class="fa icon-sidebar-toggle"></i></a>
|
||
|
|
||
|
<div class="sidebar-content">
|
||
|
|
||
|
<?php if ( get_theme_mod( 'post-nav','s1' ) == 's2') { get_template_part('inc/post-nav'); } ?>
|
||
|
|
||
|
<?php dynamic_sidebar($sidebar); ?>
|
||
|
|
||
|
</div><!--/.sidebar-content-->
|
||
|
|
||
|
</div><!--/.sidebar-->
|