mirror of
https://ghproxy.net/https://github.com/presscustomizr/hueman.git
synced 2026-02-28 21:45:05 +08:00
64 lines
No EOL
2.5 KiB
PHP
64 lines
No EOL
2.5 KiB
PHP
<?php $layout = hu_get_layout_class(); ?>
|
|
<?php if ( $layout != 'col-1c'): ?>
|
|
|
|
<div class="sidebar s1 collapsed" data-position="<?php echo hu_get_sidebar_position( 's1' ); ?>" data-layout="<?php echo $layout ?>" data-sb-id="s1">
|
|
|
|
<button class="sidebar-toggle" title="<?php _e('Expand Sidebar','hueman'); ?>"><i class="fas sidebar-toggle-arrows"></i></button>
|
|
|
|
<div class="sidebar-content">
|
|
|
|
<?php if ( hu_is_checked('sidebar-top') ): ?>
|
|
<?php
|
|
// wp_kses_post() Sanitizes content for allowed HTML tags for post content.
|
|
// see https://developer.wordpress.org/reference/functions/wp_kses_post/
|
|
$sb_text = wp_kses_post( hu_get_option( 'primary-sb-text' ) );
|
|
?>
|
|
<div class="sidebar-top group">
|
|
<?php if ( hu_has_social_links() || !empty( $sb_text ) ) : ?>
|
|
<?php
|
|
if ( !empty( $sb_text ) ) {
|
|
echo apply_filters( 'primary_sb_text', sprintf( '<p>%1$s</p>', hu_get_option( 'primary-sb-text' ) ) );
|
|
}
|
|
?>
|
|
<?php else : //if not customizing, display an empty p for design purposes ?>
|
|
<?php if ( hu_user_can_see_customize_notices_on_front() ) : ?>
|
|
<?php
|
|
printf( '<p style="text-transform:none;font-size: 0.8em;">%1$s. <a style="color: white;text-decoration:underline;" href="%2$s" title="%3$s">%3$s »</a></p>',
|
|
__('You can set your social links here from the live customizer', 'hueman'),
|
|
admin_url( 'customize.php?autofocus[section]=social_links_sec' ),
|
|
__('Customize now', 'hueman')
|
|
);
|
|
?>
|
|
<?php elseif ( ! is_user_logged_in() ) : ?>
|
|
<?php printf('<p> </p>'); ?>
|
|
<?php endif; ?>
|
|
<?php endif; ?>
|
|
<?php
|
|
if ( hu_is_checked('sl-in-sidebar') ) {
|
|
hu_print_social_links() ;
|
|
}
|
|
?>
|
|
</div>
|
|
<?php endif; ?>
|
|
|
|
<?php if ( hu_get_option( 'post-nav' ) == 's1') { get_template_part('parts/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 hu_print_widgets_in_location('s1') ?>
|
|
|
|
</div><!--/.sidebar-content-->
|
|
|
|
</div><!--/.sidebar-->
|
|
|
|
<?php
|
|
if ( in_array( $layout, array('col-3cm', 'col-3cl', 'col-3cr' ) ) ) {
|
|
get_template_part('sidebar-2');
|
|
}
|
|
?>
|
|
|
|
<?php endif; ?>
|