blogside/sidebar.php

43 lines
1.4 KiB
PHP
Raw Normal View History

2016-02-03 11:28:05 +01:00
<?php
2018-10-31 13:03:44 +01:00
$sidebar = blogside_sidebar_primary();
$layout = blogside_layout_class();
2016-02-03 11:28:05 +01:00
if ( $layout != 'col-1c'):
?>
<div class="sidebar s1">
2018-10-31 13:03:44 +01:00
<a class="sidebar-toggle" title="<?php esc_attr_e('Expand Sidebar','blogside'); ?>"><i class="fa icon-sidebar-toggle"></i></a>
2016-02-03 11:28:05 +01:00
<div class="sidebar-content">
2017-12-16 20:58:17 +01:00
<?php if ( get_theme_mod('profile-image') ): ?>
<div id="profile-image"><div id="profile-overlay"></div><img src="<?php echo get_theme_mod('profile-image'); ?>" alt="" /></div>
2016-02-03 11:28:05 +01:00
<?php endif; ?>
<div id="profile" class="group">
2017-12-16 20:58:17 +01:00
<?php if ( get_theme_mod('profile-name') ): ?>
<div id="profile-name"><?php echo get_theme_mod('profile-name'); ?></div>
2016-02-03 11:28:05 +01:00
<?php endif; ?>
2017-12-16 20:58:17 +01:00
<?php if ( get_theme_mod('profile-description') ): ?>
<div id="profile-description"><?php echo get_theme_mod('profile-description'); ?></div>
2016-02-03 11:28:05 +01:00
<?php endif; ?>
2018-07-15 20:36:53 +02:00
<?php if ( get_theme_mod( 'header-social', 'on' ) == 'on' ): ?>
2018-10-31 13:03:44 +01:00
<?php blogside_social_links() ; ?>
2018-07-15 20:36:53 +02:00
<?php endif; ?>
2016-02-03 11:28:05 +01:00
</div>
2017-12-17 14:07:49 +01:00
<?php if ( get_theme_mod( 'post-nav', 's1' ) == 's1') { get_template_part('inc/post-nav'); } ?>
2016-02-03 11:28:05 +01:00
<?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 endif; ?>