mirror of
https://ghproxy.net/https://github.com/AlxMedia/magaziner.git
synced 2025-08-27 20:23:04 +08:00
Initial commit
This commit is contained in:
commit
b0607606ae
369 changed files with 85494 additions and 0 deletions
34
sidebar.php
Normal file
34
sidebar.php
Normal file
|
@ -0,0 +1,34 @@
|
|||
<?php
|
||||
$sidebar = magaziner_sidebar_primary();
|
||||
$layout = magaziner_layout_class();
|
||||
if ( $layout != 'col-1c'):
|
||||
?>
|
||||
|
||||
<div class="sidebar s1 <?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' ) == 's1') { get_template_part('inc/post-nav'); } ?>
|
||||
|
||||
<?php if( is_page_template('page-templates/child-menu.php') ): ?>
|
||||
<ul class="child-menu group">
|
||||
<?php wp_list_pages('title_li=&sort_column=menu_order&depth=3'); ?>
|
||||
</ul>
|
||||
<?php endif; ?>
|
||||
|
||||
<?php dynamic_sidebar($sidebar); ?>
|
||||
|
||||
</div><!--/.sidebar-content-->
|
||||
|
||||
</div><!--/.sidebar-->
|
||||
|
||||
<?php if (
|
||||
( $layout == 'col-3cm' ) ||
|
||||
( $layout == 'col-3cl' ) ||
|
||||
( $layout == 'col-3cr' ) )
|
||||
{ get_template_part('sidebar-2'); }
|
||||
?>
|
||||
|
||||
<?php endif; ?>
|
Loading…
Add table
Add a link
Reference in a new issue