-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathcontent-none.php
executable file
·40 lines (32 loc) · 1.12 KB
/
content-none.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
<?php
/**
* Template part for displaying a message that posts cannot be found
*
* @package Gridd
* @since 1.0
*/
?>
<section class="no-results not-found">
<header class="page-header container">
<h1 class="page-title"><?php esc_html_e( 'Nothing Found', 'gridd' ); ?></h1>
</header>
<div class="page-content container">
<?php if ( is_home() && current_user_can( 'publish_posts' ) ) : ?>
<p>
<?php
printf(
/* translators: Link to WP admin new post page ("Get started here" text). */
esc_html__( 'Ready to publish your first post? %s.', 'gridd' ),
'<a href="' . esc_url( admin_url( 'post-new.php' ) ) . '">' . esc_html__( 'Get started here', 'gridd' ) . '</a>'
);
?>
</p>
<?php elseif ( is_search() ) : ?>
<p><?php esc_html_e( 'Sorry, but nothing matched your search terms. Please try again with some different keywords.', 'gridd' ); ?></p>
<?php get_search_form(); ?>
<?php else : ?>
<p><?php esc_html_e( 'It seems we can’t find what you’re looking for. Perhaps searching can help.', 'gridd' ); ?></p>
<?php get_search_form(); ?>
<?php endif; ?>
</div>
</section>