34 lines
737 B
PHP
34 lines
737 B
PHP
<?php
|
|
/**
|
|
* The template for displaying all single posts
|
|
*
|
|
* @link https://developer.wordpress.org/themes/basics/template-hierarchy/#single-post
|
|
*
|
|
* @package Restly
|
|
*/
|
|
|
|
get_header();
|
|
|
|
?>
|
|
<div id="page-hero-box" class="breadcroumb-area">
|
|
<div class="container">
|
|
<div class="breadcroumn-contnt">
|
|
<h2 class="brea-title"> <?php the_title(); ?> </h2>
|
|
<div class="bre-sub">
|
|
<?php if(function_exists('bcn_display')){
|
|
bcn_display();
|
|
}?>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="restly-template-for-elementor">
|
|
<?php
|
|
while ( have_posts() ) : the_post();
|
|
the_content();
|
|
endwhile;
|
|
?>
|
|
</div>
|
|
<?php
|
|
get_footer();
|