at path:
ROOT
/
wp-content
/
themes
/
jannah
/
sidebar-footer.php
run:
R
W
Run
assets
DIR
2025-12-16 15:53:27
R
W
Run
buddypress
DIR
2025-12-16 15:53:27
R
W
Run
framework
DIR
2025-12-16 15:53:27
R
W
Run
inc
DIR
2025-12-16 15:53:27
R
W
Run
languages
DIR
2025-12-16 15:53:27
R
W
Run
templates
DIR
2025-12-16 15:53:27
R
W
Run
404.php
1.41 KB
2025-12-16 15:53:27
R
W
Run
Delete
Rename
archive-web-story.php
1.11 KB
2025-12-16 15:53:27
R
W
Run
Delete
Rename
archive.php
1.38 KB
2025-12-16 15:53:27
R
W
Run
Delete
Rename
author.php
1.42 KB
2025-12-16 15:53:27
R
W
Run
Delete
Rename
buddypress.php
816 By
2025-12-16 15:53:27
R
W
Run
Delete
Rename
category.php
3.89 KB
2025-12-16 15:53:27
R
W
Run
Delete
Rename
comments.php
1.52 KB
2025-12-16 15:53:27
R
W
Run
Delete
Rename
footer.php
404 By
2025-12-16 15:53:27
R
W
Run
Delete
Rename
functions.php
4.38 KB
2025-12-16 15:53:27
R
W
Run
Delete
Rename
header.php
977 By
2025-12-23 11:06:26
R
W
Run
Delete
Rename
index.php
1.05 KB
2025-12-16 15:53:27
R
W
Run
Delete
Rename
page.php
590 By
2025-12-16 15:53:27
R
W
Run
Delete
Rename
prepros.cfg
423.53 KB
2025-12-16 15:53:27
R
W
Run
Delete
Rename
prepros.config
99.75 KB
2025-12-16 15:53:27
R
W
Run
Delete
Rename
rtl.css
36 KB
2025-12-16 15:53:27
R
W
Run
Delete
Rename
screenshot.jpg
60.18 KB
2025-12-16 15:53:27
R
W
Run
Delete
Rename
search.php
1.45 KB
2025-12-16 15:53:27
R
W
Run
Delete
Rename
sidebar-footer.php
2.85 KB
2025-12-16 15:53:27
R
W
Run
Delete
Rename
sidebar-shop.php
751 By
2025-12-16 15:53:27
R
W
Run
Delete
Rename
sidebar-slide.php
4.07 KB
2025-12-16 15:53:27
R
W
Run
Delete
Rename
sidebar.php
2.48 KB
2025-12-16 15:53:27
R
W
Run
Delete
Rename
single.php
359 By
2025-12-16 15:53:27
R
W
Run
Delete
Rename
style.css
704 By
2025-12-16 15:53:27
R
W
Run
Delete
Rename
tag.php
1.42 KB
2025-12-16 15:53:27
R
W
Run
Delete
Rename
template-authors.php
230 By
2025-12-16 15:53:27
R
W
Run
Delete
Rename
template-masonry.php
377 By
2025-12-16 15:53:27
R
W
Run
Delete
Rename
template-sitemap.php
227 By
2025-12-16 15:53:27
R
W
Run
Delete
Rename
wpml-config.xml
7.17 KB
2025-12-16 15:53:27
R
W
Run
Delete
Rename
error_log
up
📄
sidebar-footer.php
Save
<?php /** * The template for the Footer widgets area * */ defined( 'ABSPATH' ) || exit; // Exit if accessed directly if( tie_get_option( 'footer_widgets_'.$name ) ): $normal_width = ' normal-side'; $footer_layout = tie_get_option( 'footer_widgets_layout_'.$name ); $border_class = tie_get_option( 'footer_widgets_border_'.$name ) ? 'footer-boxed-widget-area' : ''; $footer_widget_1 = $footer_widget_2 = $footer_widget_3 = $footer_widget_4 = ''; # Footer Columns switch ( $footer_layout ){ case 'footer-1c': $footer_widget_1 = 'fullwidth-area tie-col-sm-12'; $normal_width = ''; break; case 'footer-2c': $footer_widget_1 = $footer_widget_2 = 'tie-col-sm-6'; break; case 'narrow-wide-2c': $footer_widget_1 = 'tie-col-sm-4'; $footer_widget_2 = 'tie-col-sm-8'; break; case 'wide-narrow-2c': $footer_widget_1 = 'tie-col-sm-8'; $footer_widget_2 = 'tie-col-sm-4'; break; case 'footer-3c': $footer_widget_1 = $footer_widget_2 = $footer_widget_3 = 'tie-col-sm-4'; break; case 'wide-left-3c': $footer_widget_1 = 'tie-col-sm-6'; $footer_widget_2 = $footer_widget_3 = 'tie-col-sm-3'; break; case 'wide-right-3c': $footer_widget_1 = $footer_widget_2 = 'tie-col-sm-3'; $footer_widget_3 = 'tie-col-sm-6'; break; case 'footer-4c': $footer_widget_1 = $footer_widget_2 = $footer_widget_3 = $footer_widget_4 = 'tie-col-md-3'; break; default: } $first_column = 'first-footer-widget-'.$name; $second_column = 'second-footer-widget-'.$name; $third_column = 'third-footer-widget-'.$name; $fourth_column = 'fourth-footer-widget-'.$name; if( is_active_sidebar( $first_column ) || is_active_sidebar( $second_column ) || is_active_sidebar( $third_column ) || is_active_sidebar( $fourth_column ) ){ ?> <div class="footer-widget-area <?php echo esc_attr( $border_class ) ?>"> <div class="tie-row"> <?php if ( is_active_sidebar( $first_column )): ?> <div class="<?php echo esc_attr( $footer_widget_1.$normal_width ) ?>"> <?php dynamic_sidebar( $first_column ); ?> </div><!-- .tie-col /--> <?php endif; ?> <?php if ( is_active_sidebar( $second_column )): ?> <div class="<?php echo esc_attr( $footer_widget_2.$normal_width ) ?>"> <?php dynamic_sidebar( $second_column ); ?> </div><!-- .tie-col /--> <?php endif; ?> <?php if ( is_active_sidebar( $third_column )): ?> <div class="<?php echo esc_attr( $footer_widget_3.$normal_width ) ?>"> <?php dynamic_sidebar( $third_column ); ?> </div><!-- .tie-col /--> <?php endif; ?> <?php if ( is_active_sidebar( $fourth_column )): ?> <div class="<?php echo esc_attr( $footer_widget_4.$normal_width ) ?>"> <?php dynamic_sidebar( $fourth_column ); ?> </div><!-- .tie-col /--> <?php endif; ?> </div><!-- .tie-row /--> </div><!-- .footer-widget-area /--> <?php } endif;