Move into wp-content path

Signed-off-by: Adrian Nöthlich <git@promasu.tech>
This commit is contained in:
2019-08-31 00:48:20 +02:00
parent f523d8ccc0
commit 3724cc6edd
342 changed files with 108652 additions and 0 deletions

View File

@@ -0,0 +1,29 @@
<?php
/**
* The Template for displaying single posts.
*
* @package Pirate Rogue
* @since Pirate Rogue 1.0
* @version 1.0
*/
get_header(); ?>
<div id="singlepost-wrap" class="singlepost-wrap cf">
<?php // Start the Loop.
while ( have_posts() ) : the_post(); ?>
<?php get_template_part( 'template-parts/content-single' ); ?>
<?php endwhile; // End of the loop. ?>
<?php get_sidebar(); ?>
</div><!-- end .singlepost-wrap -->
<?php if ( class_exists( 'Jetpack_RelatedPosts' ) ) : ?>
<div class="recommended-posts-wrap cf">
<?php echo do_shortcode( '[jetpack-related-posts]' ); ?>
</div><!-- end .recommended-posts-wrap -->
<?php endif; ?>
<?php get_footer(); ?>