Files
gkachele-saas/gk-assets/themes/abiz/template-parts/content-none.php

37 lines
960 B
PHP

<?php
/**
* Template part for displaying a message that posts cannot be found.
*/
?>
<article id="post-<?php the_ID(); ?>" <?php post_class( 'blog-inner' ); ?>>
<div class="post-details-outer">
<?php
if ( is_home() && current_user_can( 'publish_posts' ) ) :
printf(
'<p>' . wp_kses(
/* translators: 1: link to WP admin new post page. */
__( 'Ready to publish your first post? <a href="%1$s">Get started here</a>.', 'abiz' ),
array(
'a' => array(
'href' => array(),
),
)
) . '</p>',
esc_url( admin_url( 'post-new.php' ) )
);
elseif ( is_search() ) :
?>
<p><?php esc_html_e( 'Sorry, but nothing matched your search terms. Please try again with some different keywords.', 'abiz' ); ?></p>
<?php
else :
?>
<p><?php esc_html_e( 'It seems we can&rsquo;t find what you&rsquo;re looking for. Perhaps searching can help.', 'abiz' ); ?></p>
<?php
endif;
?>
</div>
</article>