27 lines
507 B
PHP
27 lines
507 B
PHP
<?php
|
|
/**
|
|
* The template for displaying all single posts
|
|
*
|
|
* @link https://developer.wordpress.org/themes/basics/template-hierarchy/#single-post
|
|
*
|
|
* @package stnews-theme
|
|
*/
|
|
|
|
get_header();
|
|
?>
|
|
|
|
|
|
|
|
<?php
|
|
while ( have_posts() ) :
|
|
the_post();
|
|
|
|
get_template_part( 'template-parts/content', get_post_type() );
|
|
|
|
endwhile; // End of the loop.
|
|
?>
|
|
<div class="shareaholic-canvas" data-app="total_share_count" data-services="facebook,yummly"></div>
|
|
<?php
|
|
//get_sidebar();
|
|
get_footer();
|