Create New Item
Item Type
File
Folder
Item Name
Search file in folder and subfolders...
Are you sure want to rename?
File Manager
/
alternativeline
/
wp-content
/
themes
/
real-estate-salient
:
single.php
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
<?php /** * The template for displaying all single posts. * * @link https://developer.wordpress.org/themes/basics/template-hierarchy/#single-post * * @package real-estate-salient */ get_header(); ?> <?php do_action( 'real_estate_salient_content_head' ); ?> <div class="container-fluid"> <div class="content-area container"> <div class="single-index clearfix" id="content"> <div class="row"> <?php if(have_posts()): while(have_posts()): the_post(); get_template_part( 'template-parts/content', 'single' ); endwhile; endif; ?> <?php get_sidebar(); ?> </div><!-- .row --> </div><!-- .single-index clearfix --> </div><!-- .content-area container --> </div> <?php get_footer(); ?>