← Back
Editing: single.php
<?php /** * The template for displaying all single posts and attachments */ get_header(); while( have_posts() ){ the_post(); $blog_style = kingster_get_option('general', 'blog-style', 'style-1'); get_template_part('content/single', $blog_style); } // while get_footer(); ?>
Save File
Cancel