This repository has been archived on 2020-05-08. You can view files and clone it, but cannot push or open issues or pull requests.
understrap/loop-templates/content-none.php

55 lines
1.3 KiB
PHP
Raw Normal View History

2014-12-10 11:36:38 +00:00
<?php
/**
* The template part for displaying a message that posts cannot be found
2014-12-10 11:36:38 +00:00
*
* Learn more: http://codex.wordpress.org/Template_Hierarchy
*
* @package understrap
*/
2019-06-20 08:57:12 +00:00
// Exit if accessed directly.
defined( 'ABSPATH' ) || exit;
2014-12-10 11:36:38 +00:00
?>
2017-02-02 08:17:24 +00:00
<section class="no-results not-found">
2016-11-21 18:12:07 +00:00
<header class="page-header">
2017-02-09 14:55:27 +00:00
<h1 class="page-title"><?php esc_html_e( 'Nothing Found', 'understrap' ); ?></h1>
2016-11-21 18:12:07 +00:00
</header><!-- .page-header -->
2014-12-10 11:36:38 +00:00
2016-11-21 18:12:07 +00:00
<div class="page-content">
2017-02-02 08:17:24 +00:00
<?php
if ( is_home() && current_user_can( 'publish_posts' ) ) :
2014-12-10 11:36:38 +00:00
$kses = array( 'a' => array( 'href' => array() ) );
printf(
2020-04-22 05:56:54 +00:00
/* translators: 1: Link to WP admin new post page. */
'<p>' . wp_kses( __( 'Ready to publish your first post? <a href="%1$s">Get started here</a>.', 'understrap' ), $kses ) . '</p>',
esc_url( admin_url( 'post-new.php' ) )
);
2014-12-10 11:36:38 +00:00
elseif ( is_search() ) :
2014-12-10 11:36:38 +00:00
printf(
'<p>%s<p>',
esc_html__( 'Sorry, but nothing matched your search terms. Please try again with some different keywords.', 'understrap' )
);
get_search_form();
else :
printf(
'<p>%s<p>',
esc_html__( 'It seems we can&rsquo;t find what you&rsquo;re looking for. Perhaps searching can help.', 'understrap' )
);
get_search_form();
endif;
?>
2016-11-21 18:12:07 +00:00
</div><!-- .page-content -->
2019-06-20 08:57:12 +00:00
2017-02-02 08:17:24 +00:00
</section><!-- .no-results -->