first commit without licensingg
This commit is contained in:
75
template-parts/content-singular.php
Normal file
75
template-parts/content-singular.php
Normal file
@@ -0,0 +1,75 @@
|
||||
<?php
|
||||
/**
|
||||
* Template part singular content
|
||||
*
|
||||
* @package Revision
|
||||
*/
|
||||
|
||||
?>
|
||||
|
||||
<div class="cs-entry__wrap">
|
||||
|
||||
<?php
|
||||
/**
|
||||
* The csco_entry_wrap_start hook.
|
||||
*
|
||||
* @since 1.0.0
|
||||
*/
|
||||
do_action( 'csco_entry_wrap_start' );
|
||||
?>
|
||||
|
||||
<div class="cs-entry__container">
|
||||
|
||||
<?php
|
||||
/**
|
||||
* The csco_entry_container_start hook.
|
||||
*
|
||||
* @since 1.0.0
|
||||
*/
|
||||
do_action( 'csco_entry_container_start' );
|
||||
?>
|
||||
|
||||
<div class="cs-entry__content-wrap">
|
||||
<?php
|
||||
/**
|
||||
* The csco_entry_content_before hook.
|
||||
*
|
||||
* @since 1.0.0
|
||||
*/
|
||||
do_action( 'csco_entry_content_before' );
|
||||
?>
|
||||
|
||||
<div class="entry-content">
|
||||
<?php the_content(); ?>
|
||||
</div>
|
||||
|
||||
<?php
|
||||
/**
|
||||
* The csco_entry_content_after hook.
|
||||
*
|
||||
* @since 1.0.0
|
||||
*/
|
||||
do_action( 'csco_entry_content_after' );
|
||||
?>
|
||||
</div>
|
||||
|
||||
<?php
|
||||
/**
|
||||
* The csco_entry_container_end hook.
|
||||
*
|
||||
* @since 1.0.0
|
||||
*/
|
||||
do_action( 'csco_entry_container_end' );
|
||||
?>
|
||||
|
||||
</div>
|
||||
|
||||
<?php
|
||||
/**
|
||||
* The csco_entry_wrap_end hook.
|
||||
*
|
||||
* @since 1.0.0
|
||||
*/
|
||||
do_action( 'csco_entry_wrap_end' );
|
||||
?>
|
||||
</div>
|
||||
Reference in New Issue
Block a user