Current Path : /var/test/www/mainsite/wp-content/themes/alone/ |
Current File : /var/test/www/mainsite/wp-content/themes/alone/content-none.php |
<?php /** * The template for displaying a "No posts found" message */ ?> <div class="entry-content bt-content-none" itemprop="text"> <h2 class="entry-title"><?php esc_html_e( 'Nothing Found', 'alone' ); ?></h2> <?php if ( is_home() && current_user_can( 'publish_posts' ) ) : ?> <p><?php printf( esc_html__( 'Ready to publish your first post?', 'alone').' <a href="%1$s">'.esc_html__( 'Get started here', 'alone').'</a>.', 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.', 'alone' ); ?></p> <div class="row"> <div class="col-md-6"> <?php get_search_form(); ?> </div> </div> <div class="clearfix"></div> <?php else : ?> <p><?php esc_html_e( 'It seems we can’t find what you’re looking for. Perhaps searching can help.', 'alone' ); ?></p> <div class="row"> <div class="col-md-6"> <?php get_search_form(); ?> </div> </div> <div class="clearfix"></div> <?php endif; ?> </div>