| Server IP : 139.59.63.204 / Your IP : 216.73.217.62 Web Server : Apache/2.4.58 (Ubuntu) System : Linux ubuntu-s-1vcpu-1gb-blr1-01 6.8.0-110-generic #110-Ubuntu SMP PREEMPT_DYNAMIC Thu Mar 19 15:09:20 UTC 2026 x86_64 User : root ( 0) PHP Version : 8.3.6 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : OFF Directory : /var/www/greenbrissie.com/public_html/wp-content/themes/efb-garden/ |
Upload File : |
<?php /** * The template for displaying search results pages * * @link https://developer.wordpress.org/themes/basics/template-hierarchy/#search-result * * @package efb-tndc */ get_header(); ?> <div class="pageme"><h1><?php /* translators: %s: search query. */ printf( esc_html__( 'Search Results for: %s', 'efb-tndc' ), '<span>' . get_search_query() . '</span>' ); ?></h1></div> <div class="container mt-3"> <div class="row"> <div class="col-sm-9"> <?php if ( have_posts() ) : /* Start the Loop */ while ( have_posts() ) : the_post(); /* * Include the Post-Type-specific template for the content. * If you want to override this in a child theme, then include a file * called content-___.php (where ___ is the Post Type name) and that will be used instead. */ ?> <div class="row newsrow"> <div class="col-sm-12"> <img src="<?php echo get_the_post_thumbnail_url(); ?>" class="newsthumb"> <h2><?php the_title(); ?></h2> <p><?php the_excerpt(); ?></p> </div> </div> <?php endwhile; the_posts_navigation(); else : get_template_part( 'template-parts/content', 'none' ); endif; ?> </div> <div class="col-sm-3"> <?php get_sidebar(); ?> </div> </div> </div> <?php get_footer();