/home/idolaotomotif/totalcard.biz/wp-content/themes/blossom-pin/template-parts/content-none.php
<?php
/**
* Template part for displaying a message that posts cannot be found
*
* @link https://developer.wordpress.org/themes/basics/template-hierarchy/
*
* @package Blossom_Pin
*/
global $wp_query, $post;
$ed_slider = get_theme_mod( 'ed_banner_section', 'slider_banner' );
?>
<section class="no-results not-found">
<header class="page-header">
<?php if( is_home() && ( $ed_slider == 'slider_banner' ) && $wp_query->found_posts == 0 && $post ){ ?>
<h2 class="page-title"><?php esc_html_e( 'Add More Posts', 'blossom-pin' ); ?></h2>
<?php }else{ ?>
<h1 class="page-title"><?php esc_html_e( 'Nothing Found', 'blossom-pin' ); ?></h1>
<?php } ?>
</header><!-- .page-header -->
<div class="page-content">
<?php
if ( is_home() && current_user_can( 'publish_posts' ) ) :
if( ( $ed_slider == 'slider_banner' ) && $wp_query->found_posts == 0 && $post ){ ?>
<p><?php
printf(
wp_kses(
/* translators: 1: link to WP admin new post page. */
__( 'Your blog posts are displayed in the slider. To display blog post here, <a href="%1$s">please publish more blog posts.</a>', 'blossom-pin' ),
array(
'a' => array(
'href' => array(),
),
)
),
esc_url( admin_url( 'post-new.php' ) )
);
?></p>
<?php
}else{
?>
<p><?php
printf(
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>.', 'blossom-pin' ),
array(
'a' => array(
'href' => array(),
),
)
),
esc_url( 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.', 'blossom-pin' ); ?></p>
<?php
get_search_form();
else : ?>
<p><?php esc_html_e( 'It seems we can’t find what you’re looking for. Perhaps searching can help.', 'blossom-pin' ); ?></p>
<?php
get_search_form();
endif; ?>
</div><!-- .page-content -->
</section><!-- .no-results -->