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

41 lines
1.1 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.
*
* Learn more: http://codex.wordpress.org/Template_Hierarchy
*
* @package understrap
*/
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
2017-03-21 14:07:42 +00:00
<p><?php printf( wp_kses( __( 'Ready to publish your first post? <a href="%1$s">Get started here</a>.', 'understrap' ), array( 'a' => array( 'href' => array() ) ) ), esc_url( admin_url( 'post-new.php' ) ) ); ?></p>
2014-12-10 11:36:38 +00:00
2016-11-21 18:12:07 +00:00
<?php elseif ( is_search() ) : ?>
2014-12-10 11:36:38 +00:00
2017-02-09 14:55:27 +00:00
<p><?php esc_html_e( 'Sorry, but nothing matched your search terms. Please try again with some different keywords.', 'understrap' ); ?></p>
2017-02-02 08:17:24 +00:00
<?php
get_search_form();
else : ?>
2017-02-09 14:55:27 +00:00
<p><?php esc_html_e( 'It seems we can&rsquo;t find what you&rsquo;re looking for. Perhaps searching can help.', 'understrap' ); ?></p>
2017-02-02 08:17:24 +00:00
<?php
get_search_form();
endif; ?>
2016-11-21 18:12:07 +00:00
</div><!-- .page-content -->
2017-02-02 08:17:24 +00:00
</section><!-- .no-results -->