Path : /home/vishqocm/vishalwebtech.in/blog/wp-content/themes/katerio/template-parts/
File Upload :
Current File : /home/vishqocm//vishalwebtech.in//blog/wp-content/themes/katerio/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 Katerio
 */

?>

<div class="no-results not-found">

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

		<p><?php esc_html_e( 'It seems we can&rsquo;t find what you&rsquo;re looking for. Perhaps searching can help.', 'katerio' ); ?></p>
		<?php
		get_search_form();
	else :
		printf(
			'<p>' . wp_kses(
				/* translators: 1: link to WP admin new post page. */
				__( 'Nothing Found! Ready to publish your first post? <a href="%1$s">Get started here</a>.', 'katerio' ),
				array(
					'a' => array(
						'href' => array(),
					),
				)
			) . '</p>',
			esc_url( admin_url( 'post-new.php' ) )
		);
	endif;
	?>
</div><!-- .no-results -->