at path:
ROOT
/
wp-content
/
themes
/
kadu
/
footer.php
run:
R
W
Run
assets
DIR
2025-12-13 10:14:07
R
W
Run
inc
DIR
2025-12-13 10:17:32
R
W
Run
languages
DIR
2025-12-13 10:17:32
R
W
Run
template-parts
DIR
2025-12-13 10:17:32
R
W
Run
tutor
DIR
2025-12-13 10:17:32
R
W
Run
woocommerce
DIR
2025-12-13 10:17:32
R
W
Run
404.php
1.4 KB
2024-06-13 09:29:28
R
W
Run
Delete
Rename
archive.php
724 By
2024-06-14 09:04:02
R
W
Run
Delete
Rename
comments.php
2.73 KB
2024-06-23 08:52:00
R
W
Run
Delete
Rename
footer.php
715 By
2024-05-28 06:44:46
R
W
Run
Delete
Rename
functions.php
9.37 KB
2024-06-26 08:39:36
R
W
Run
Delete
Rename
header.php
1.2 KB
2024-06-25 09:00:36
R
W
Run
Delete
Rename
index.php
968 By
2024-06-14 09:03:36
R
W
Run
Delete
Rename
page.php
689 By
2024-06-13 09:31:24
R
W
Run
Delete
Rename
screenshot.png
163.35 KB
2024-06-26 05:13:24
R
W
Run
Delete
Rename
search.php
738 By
2024-06-14 09:04:28
R
W
Run
Delete
Rename
sidebar.php
396 By
2024-06-23 04:35:42
R
W
Run
Delete
Rename
single.php
641 By
2024-06-23 04:35:04
R
W
Run
Delete
Rename
style.css
410 By
2024-05-28 06:56:06
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 kadu */ if (get_post_meta(get_the_ID(), 'kadu_page_meta', true)) { $footer_meta = get_post_meta(get_the_ID(), 'kadu_page_meta', true); } else { $footer_meta = array(); } if (array_key_exists('page_footer_disable', $footer_meta)) { $page_footer_disable = $footer_meta['page_footer_disable']; } else { $page_footer_disable = false; } ?> </div><!-- #page --> <?php if ($page_footer_disable != true) { Kadu_Helper::kadu_footer_template(); } ?> <?php wp_footer(); ?> </body> </html>