Skip to content

Commit

Permalink
Better coding standards for no content template. See #737.
Browse files Browse the repository at this point in the history
  • Loading branch information
Philip Arthur Moore committed Apr 29, 2015
1 parent 1c7f560 commit 7dfe540
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions template-parts/content-none.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,22 +10,22 @@

<section class="no-results not-found">
<header class="page-header">
<h1 class="page-title"><?php _e( 'Nothing Found', '_s' ); ?></h1>
<h1 class="page-title"><?php esc_html_e( 'Nothing Found', '_s' ); ?></h1>
</header><!-- .page-header -->

<div class="page-content">
<?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>.', '_s' ), esc_url( admin_url( 'post-new.php' ) ) ); ?></p>
<p><?php printf( esc_html__( 'Ready to publish your first post? <a href="%1$s">Get started here</a>.', '_s' ), esc_url( admin_url( 'post-new.php' ) ) ); ?></p>

<?php elseif ( is_search() ) : ?>

<p><?php _e( 'Sorry, but nothing matched your search terms. Please try again with some different keywords.', '_s' ); ?></p>
<p><?php esc_html_e( 'Sorry, but nothing matched your search terms. Please try again with some different keywords.', '_s' ); ?></p>
<?php get_search_form(); ?>

<?php else : ?>

<p><?php _e( 'It seems we can&rsquo;t find what you&rsquo;re looking for. Perhaps searching can help.', '_s' ); ?></p>
<p><?php esc_html_e( 'It seems we can&rsquo;t find what you&rsquo;re looking for. Perhaps searching can help.', '_s' ); ?></p>
<?php get_search_form(); ?>

<?php endif; ?>
Expand Down

0 comments on commit 7dfe540

Please sign in to comment.