Files
wingedit.pl/wp-content/themes/restly/single-elementor_library.php
2024-11-04 20:48:19 +01:00

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();