at path:
ROOT
/
wp-content
/
themes
/
kadu
/
404.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
📄
404.php
Save
<?php /** * The template for displaying 404 pages (not found) * * @link https://codex.wordpress.org/Creating_an_Error_404_Page * * @package kadu */ get_header(); $error_code = cs_get_option('error_code'); $error_title = cs_get_option('error_title'); $error_button = cs_get_option('error_button'); ?> <div class="error-page-area pt-130 pb-130"> <div class="container kd-container-1"> <div class="error-page-content"> <img class="feh-img-plx" data-value="4" src="<?php if (!empty($error_code['url'])) { echo esc_url($error_code['url']); } else { echo esc_url(get_template_directory_uri() . '/assets/img/error-img-1.webp'); } ?>" alt="<?php esc_attr_e('404', 'kadu'); ?>" /> <h4 class="title"> <?php if (!empty($error_title)) { echo esc_html($error_title); } else { esc_html_e('Oops! Page Not found.', 'kadu'); } ?> </h4> <a href="<?php echo esc_url(home_url('/')); ?>" class="error-btn" aria-label="name"> <span class="text" data-back="<?php if (!empty($error_button)) { echo esc_html($error_button); } else { esc_html_e('Go Back Home', 'kadu'); } ?>" data-front="<?php if (!empty($error_button)) { echo esc_html($error_button); } else { esc_html_e('Go Back Home', 'kadu'); } ?>"></span> <span class="icon"> <i class="fa-solid fa-arrow-right"></i> </span> </a> </div> </div> </div> <?php get_footer();