HEX
Server: Apache
System: Linux p3plzcpnl504740.prod.phx3.secureserver.net 4.18.0-553.141.2.lve.el8.x86_64 #1 SMP Wed Jul 8 16:10:02 UTC 2026 x86_64
User: l2pbkn5l6xav (4972877)
PHP: 7.2.34
Disabled: NONE
Upload Files
File: //home/l2pbkn5l6xav/www/wp-content/themes/prime-business/template-parts/content/content-none.php
<?php
/**
 * Template part for displaying a message that posts cannot be found
 *
 * @link https://developer.wordpress.org/themes/basics/template-hierarchy/
 */

?>

<div class="container">
    <div class="row">
        <div class="twelve columns">
            <div class="no-results">
                <h1 class="page-title"><?php esc_html_e( 'Nothing Found', 'prime-business' ); ?></h1>

                <div class="page-content">
                    <?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>.', 'prime-business' ),
                                    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.', 'prime-business' ); ?></p>
                            <?php
                            get_search_form();

                        else :
                            ?>

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

                        endif;
                        ?>
                </div><!-- /.page-content -->
            </div><!-- /.no-results -->
        </div><!-- /.twelve columns -->
    </div><!-- /.row -->
</div><!-- /.container -->