| 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 all single posts * * @link https://developer.wordpress.org/themes/basics/template-hierarchy/#single-post * * @package efb-tndc */ get_header(); ?> <?php while ( have_posts() ) : the_post(); ?> <div class="pageme"><h1><?php the_title(); ?></h1></div> <div class="container mt-3"> <div class="row"> <div class="col-sm-9"> <div class="row newsrow"> <div class="col-sm-12"> <img src="<?php echo get_the_post_thumbnail_url(); ?>" class="newsthumb"> <div class="mt-3"><?php the_content(); ?></div> </div> </div> <?php the_post_navigation( array( 'prev_text' => '<span class="nav-subtitle">' . esc_html__( 'Previous:', 'efb-tndc' ) . '</span> <span class="nav-title">%title</span>', 'next_text' => '<span class="nav-subtitle">' . esc_html__( 'Next:', 'efb-tndc' ) . '</span> <span class="nav-title">%title</span>', ) ); ?> </div> <div class="col-sm-3"><?php get_sidebar(); ?></div> </div> </div> <?php endwhile; // End of the loop. ?> <?php get_footer();