at path:
ROOT
/
wp-content
/
themes
/
kadu
/
template-parts
/
content-none.php
run:
R
W
Run
footer
DIR
2025-12-13 10:18:31
R
W
Run
header
DIR
2025-12-13 10:18:31
R
W
Run
content-career.php
204 By
2024-05-28 06:29:50
R
W
Run
Delete
Rename
content-none.php
1.2 KB
2024-05-28 06:29:50
R
W
Run
Delete
Rename
content-page.php
1.03 KB
2024-05-28 06:29:50
R
W
Run
Delete
Rename
content-portfolio.php
207 By
2024-05-28 06:29:50
R
W
Run
Delete
Rename
content-search.php
1.71 KB
2024-06-23 04:21:40
R
W
Run
Delete
Rename
content-single.php
3.21 KB
2024-06-26 05:47:34
R
W
Run
Delete
Rename
content-template.php
206 By
2024-05-28 06:29:50
R
W
Run
Delete
Rename
content.php
1.72 KB
2024-06-14 09:05:16
R
W
Run
Delete
Rename
error_log
up
📄
content-none.php
Save
<?php /** * Template part for displaying a message that posts cannot be found * * @link https://developer.wordpress.org/themes/basics/template-hierarchy/ * * @package kadu */ ?> <section class="no-results not-found-rs"> <header class="page-header"> <h1> <?php esc_html_e('Nothing Found', 'kadu'); ?> </h1> </header><!-- .page-header --> <div class="page-content"> <?php if (is_home() && current_user_can('publish_posts')): printf( '<p>' . wp_kses( /* translators: 1: link to WP admin new post page. */ __('Ready to publish your first post? <a href="%1$s">Get started here</a>.', 'kadu'), array( 'a' => array( 'href' => array(), ), ) ) . '</p>', esc_url(admin_url('post-new.php')) ); elseif (is_search()): ?> <p> <?php esc_html_e('Sorry, but nothing matched your search terms. Please try again with some different keywords.', 'kadu'); ?> </p> <?php get_search_form(); else: ?> <p> <?php esc_html_e('It seems we can’t find what you’re looking for. Perhaps searching can help.', 'kadu'); ?> </p> <?php get_search_form(); endif; ?> </div><!-- .page-content --> </section><!-- .no-results -->