Hackfut Security File Manager
Current Path:
/home/haielekt/sinyo.co.id/wp-content/themes/blogbuster
home
/
haielekt
/
sinyo.co.id
/
wp-content
/
themes
/
blogbuster
/
📁
..
📄
404.php
(907 B)
📄
archive.php
(1.83 KB)
📁
assets
📄
changelog.txt
(430 B)
📄
comments.php
(1.96 KB)
📄
footer.php
(1.17 KB)
📄
functions.php
(6.06 KB)
📄
header.php
(1.47 KB)
📁
inc
📄
index.php
(1.73 KB)
📁
languages
📄
page.php
(900 B)
📄
readme.txt
(3.89 KB)
📄
rtl.css
(970 B)
📄
screenshot.png
(152.94 KB)
📄
search.php
(1.87 KB)
📄
sidebar-left.php
(1.13 KB)
📄
sidebar.php
(1.11 KB)
📄
single.php
(1.79 KB)
📄
style.css
(76.09 KB)
📁
template-parts
Editing: sidebar.php
<?php /** * The sidebar containing the main widget area * * @link https://developer.wordpress.org/themes/basics/template-files/#template-partials * * @package Blogbuster */ $global_archive_sidebar = blogbuster_get_customizer_option_value( 'blogbuster_archive_sidebar_layout' ); $global_posts_sidebar = blogbuster_get_customizer_option_value( 'blogbuster_posts_sidebar_layout' ); $global_pages_sidebar = blogbuster_get_customizer_option_value( 'blogbuster_pages_sidebar_layout' ); if ( is_page() ) { if ( 'right-sidebar' !== $global_pages_sidebar && 'both-sidebar' !== $global_pages_sidebar ) { return; } } elseif ( is_single() || is_singular() ) { if ( 'right-sidebar' !== $global_posts_sidebar && 'both-sidebar' !== $global_posts_sidebar ) { return; } } elseif ( is_archive() || is_search() ) { if ( 'right-sidebar' !== $global_archive_sidebar && 'both-sidebar' !== $global_archive_sidebar ) { return; } } if ( ! is_active_sidebar( 'sidebar-1' ) ) { return; } ?> <aside id="secondary" class="widget-area"> <?php dynamic_sidebar( 'sidebar-1' ); ?> </aside><!-- #secondary -->
Upload File
Create Folder