at path:
ROOT
/
wp-content
/
themes
/
sirisha
/
footer.php
run:
R
W
Run
assets
DIR
2026-06-11 02:04:52
R
W
Run
inc
DIR
2026-05-19 09:47:48
R
W
Run
languages
DIR
2026-05-19 09:47:48
R
W
Run
template-parts
DIR
2026-05-19 09:47:48
R
W
Run
templates
DIR
2026-05-19 09:47:48
R
W
Run
woocommerce
DIR
2026-05-19 09:47:48
R
W
Run
.DS_Store
6 KB
2023-03-05 11:34:20
R
W
Run
Delete
Rename
.htaccess
127 By
2026-05-27 01:21:48
R
W
Run
404.php
1.53 KB
2022-08-24 05:33:26
R
W
Run
Delete
Rename
archive.php
2.9 KB
2022-08-24 05:33:26
R
W
Run
Delete
Rename
author.php
2.61 KB
2022-08-24 05:33:26
R
W
Run
Delete
Rename
comments.php
6.22 KB
2022-08-21 10:34:08
R
W
Run
Delete
Rename
footer.php
1.38 KB
2022-09-26 12:12:24
R
W
Run
Delete
Rename
functions.php
11.65 KB
2022-12-19 10:05:10
R
W
Run
Delete
Rename
header.php
890 By
2022-08-24 05:33:26
R
W
Run
Delete
Rename
index.php
2.7 KB
2022-08-24 05:33:26
R
W
Run
Delete
Rename
page.php
936 By
2022-08-21 10:38:16
R
W
Run
Delete
Rename
screenshot.png
264.86 KB
2022-08-17 21:06:22
R
W
Run
Delete
Rename
search.php
2.32 KB
2022-08-24 05:33:26
R
W
Run
Delete
Rename
searchform.php
848 By
2022-08-21 10:39:48
R
W
Run
Delete
Rename
sidebar.php
442 By
2022-08-21 10:40:06
R
W
Run
Delete
Rename
single-elementor_library.php
531 By
2022-08-21 10:40:38
R
W
Run
Delete
Rename
single-rainbow_projects.php
1.99 KB
2022-09-12 13:57:40
R
W
Run
Delete
Rename
single.php
1.72 KB
2022-08-24 05:33:26
R
W
Run
Delete
Rename
style-editor.css
41.02 KB
2022-08-17 21:06:22
R
W
Run
Delete
Rename
style-rtl.css
29.53 KB
2023-01-02 17:24:42
R
W
Run
Delete
Rename
style.css
12.48 KB
2023-09-21 04:01:16
R
W
Run
Delete
Rename
error_log
up
📄
footer.php
Save
<?php /** * The template for displaying the footer * * Contains the closing of the #content div and all content after. * * @link https://developer.wordpress.org/themes/basics/template-files/#template-partials * * @package inbio */ if ( ! defined( 'ABSPATH' ) ) { exit; // Exit if accessed directly. } ?> </main><!-- End Page Wrapper --> <?php $rainbow_options = Rainbow_Helper::rainbow_get_options(); $footer_layout = Rainbow_Helper::rainbow_footer_layout(); $footer_area = $footer_layout['footer_area']; if ("no" !== $footer_area && "0" !== $footer_area) { get_template_part('template-parts/footer/footer', $footer_layout['footer_style']); } $innto_video_enable = (isset($rainbow_options['rainbow_enable_intro_video'])) ? $rainbow_options['rainbow_enable_intro_video'] : 'no'; if ($innto_video_enable !== 'no') { get_template_part('template-parts/intro-video'); // Get intro video template } $back_to_top_position = (isset($rainbow_options['rainbow_scroll_to_top_position'])) ? $rainbow_options['rainbow_scroll_to_top_position'] : 'right'; if ($rainbow_options['rainbow_scroll_to_top_enable'] !== 'no') { ?> <div class="backto-top position-<?php echo esc_attr($back_to_top_position); ?>"><!-- Back to top Start --> <div> <i class="feather-arrow-up"></i> </div> </div><!-- Back to top end --> <?php } ?> </div> <?php wp_footer(); ?> </body> </html>