File Editor
Directories:
.. (Back)
assets
inc
languages
page-templates
template-parts
vendor
Files:
404.php
500.php
archive.php
attachment.php
comments.php
editor-style.css
editor-style.min.css
footer.php
front-page.php
functions.php
header.php
index.php
offline.php
page.php
readme.txt
search.php
sidebar-woocommerce.php
sidebar.php
single-jetpack-portfolio.php
single.php
style-rtl.css
style-rtl.min.css
style.css
style.min.css
Create New File
Create
Edit File: sidebar.php
<?php /** * The Sidebar containing the main widget areas. * * @package Hestia * @since Hestia 1.0.0 * @modified 1.1.30 */ $sidebar_class = apply_filters( 'hestia_filter_blog_sidebar_classes', 'col-md-3 blog-sidebar-wrapper' ); if ( is_active_sidebar( 'sidebar-1' ) ) { ?> <div class="<?php echo esc_attr( $sidebar_class ); ?>"> <aside id="secondary" class="blog-sidebar" role="complementary"> <?php do_action( 'hestia_before_sidebar_content' ); ?> <?php dynamic_sidebar( 'sidebar-1' ); ?> <?php do_action( 'hestia_after_sidebar_content' ); ?> </aside><!-- .sidebar .widget-area --> </div> <?php } elseif ( is_customize_preview() ) { hestia_sidebar_placeholder( 'col-md-offset-1', 'sidebar-1' ); } ?>
Save Changes
Rename File
Rename