Files
revision/page.php
2025-08-21 14:40:43 +02:00

61 lines
792 B
PHP

<?php
/**
* The template for displaying all single pages.
*
* @package Revision
*/
get_header(); ?>
<div id="primary" class="cs-content-area">
<?php
/**
* The csco_main_before hook.
*
* @since 1.0.0
*/
do_action( 'csco_main_before' );
?>
<?php
while ( have_posts() ) :
the_post();
?>
<?php
/**
* The csco_page_before hook.
*
* @since 1.0.0
*/
do_action( 'csco_page_before' );
?>
<?php get_template_part( 'template-parts/content-singular' ); ?>
<?php
/**
* The csco_page_after hook.
*
* @since 1.0.0
*/
do_action( 'csco_page_after' );
?>
<?php endwhile; ?>
<?php
/**
* The csco_main_after hook.
*
* @since 1.0.0
*/
do_action( 'csco_main_after' );
?>
</div>
<?php get_sidebar(); ?>
<?php get_footer(); ?>