Current File : /home/aventura/www/site/wp-content/themes/kleo/content-none.php |
<?php
/**
* The template for displaying a "No posts found" message
*
* @package WordPress
* @subpackage Kleo
* @since Kleo 1.0
*/
?>
<div class="page-content text-center">
<?php if ( is_home() && current_user_can( 'publish_posts' ) ) : ?>
<p><?php printf( __( 'Ready to publish your first post? <a href="%1$s">Get started here</a>.', 'kleo_framework' ), admin_url( 'post-new.php' ) ); ?></p>
<?php elseif ( is_search() ) : ?>
<p><?php esc_html_e( 'Sorry, but nothing matched your search terms. Please try again with some different keywords.', 'kleo_framework' ); ?></p>
<?php get_search_form(); ?>
<?php else : ?>
<h4><?php esc_html_e( 'It seems we can’t find what you’re looking for. Perhaps searching can help.', 'kleo_framework' ); ?></h4>
<?php get_search_form(); ?>
<?php endif; ?>
</div><!-- .page-content -->