mirror of
https://gh.wpcy.net/https://github.com/presscustomizr/hueman.git
synced 2026-04-25 05:51:31 +08:00
* New settings organization. In the customizer, the settings have been reorganized in 5 panels : Global settings, Header, Content, Footer, Dynamic Sidebars and Widgets. * Added a new way to create dynamic content with widgets for a given context (home, page, archive ...) and in a specific location of the page ( right sidebar, footer left, ...) * Added backward compatibility for the renamed functions used in the templates, like alx_social_links() now is hu_social_links() * Fixed backward compatibility issue with already declared old functions in child theme * Added back the featured-category option * Fixed undefined function ot_register_meta_box() * Fixed blog page sidebars not showing up * Fixed alx_layout_class() function undefined in child themes
19 lines
No EOL
530 B
PHP
19 lines
No EOL
530 B
PHP
<div class="sidebar s2">
|
|
|
|
<a class="sidebar-toggle" title="<?php _e('Expand Sidebar','hueman'); ?>"><i class="fa icon-sidebar-toggle"></i></a>
|
|
|
|
<div class="sidebar-content">
|
|
|
|
<?php if ( hu_is_checked('sidebar-top') ): ?>
|
|
<div class="sidebar-top group">
|
|
<p><?php _e('More','hueman'); ?></p>
|
|
</div>
|
|
<?php endif; ?>
|
|
|
|
<?php if ( hu_get_option( 'post-nav' ) == 's2') { get_template_part('parts/post-nav'); } ?>
|
|
|
|
<?php hu_print_widgets_in_location('s2') ?>
|
|
|
|
</div><!--/.sidebar-content-->
|
|
|
|
</div><!--/.sidebar-->
|