forked from presscustomizr/hueman
-
Notifications
You must be signed in to change notification settings - Fork 0
/
sidebar.php
41 lines (30 loc) · 1.04 KB
/
sidebar.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
<?php
$sidebar = alx_sidebar_primary();
$layout = alx_layout_class();
if ( $layout != 'col-1c'):
?>
<div class="sidebar s1">
<a class="sidebar-toggle" title="<?php _e('Expand Sidebar','hueman'); ?>"><i class="fa icon-sidebar-toggle"></i></a>
<div class="sidebar-content">
<?php if ( ot_get_option('sidebar-top') != 'off' ): ?>
<div class="sidebar-top group">
<p><?php _e('Follow:','hueman'); ?></p>
<?php alx_social_links() ; ?>
</div>
<?php endif; ?>
<?php if ( ot_get_option( 'post-nav' ) == '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; ?>