051f7275a8
* Add Infield theme. Initial commit. * Removed unused font asset --------- Co-authored-by: Jason Crist <jcrist@pbking.com>
11 lines
No EOL
508 B
PHP
11 lines
No EOL
508 B
PHP
<?php
|
|
/**
|
|
* Title: Hidden No Results Content
|
|
* Slug: infield/hidden-no-results-content
|
|
* Inserter: no
|
|
*/
|
|
declare( strict_types = 1 );
|
|
?>
|
|
<!-- wp:paragraph {"style":{"spacing":{"padding":{"bottom":"80px","top":"20px"}}}} -->
|
|
<p style="padding-top:20px;padding-bottom:80px"><?php echo esc_html_x( 'Sorry, but nothing matched your search terms. Please try again with some different keywords.', 'Message explaining that there are no results returned from a search', 'infield' ); ?></p>
|
|
<!-- /wp:paragraph -->
|