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

44 lines
1.1 KiB
PHP
Raw Permalink 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
?>
2016-11-01 16:13:23 +00:00
<article class="post no-results not-found" id="post-0">
2016-11-21 18:12:07 +00:00
<header class="page-header">
<h1 class="page-title"><?php _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">
2016-11-21 18:12:07 +00:00
<?php if ( is_home() && current_user_can( 'publish_posts' ) ) : ?>
2014-12-10 11:36:38 +00:00
2016-11-21 18:12:07 +00:00
<p><?php printf( __( 'Ready to publish your first post? <a href="%1$s">Get started here</a>.',
'understrap' ), 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
2016-11-21 18:12:07 +00:00
<p><?php _e( 'Sorry, but nothing matched your search terms. Please try again with some different keywords.',
'understrap' ); ?></p>
<?php get_search_form(); ?>
2014-12-10 11:36:38 +00:00
2016-11-21 18:12:07 +00:00
<?php else : ?>
2014-12-10 11:36:38 +00:00
2016-11-21 18:12:07 +00:00
<p><?php _e( 'It seems we can&rsquo;t find what you&rsquo;re looking for. Perhaps searching can help.',
'understrap' ); ?></p>
2016-11-21 18:12:07 +00:00
<?php get_search_form(); ?>
2014-12-10 11:36:38 +00:00
2016-11-21 18:12:07 +00:00
<?php endif; ?>
2016-11-21 18:12:07 +00:00
</div><!-- .page-content -->
</article><!-- .no-results -->