WoP Not Using Template Styling
-
When I post the coding into the template page for a single post the widget does not have any of the styling. Provided is the code from my single post page. Thanks in advance for your assistance.
<?php /** * * single.php * * The single post template. Used when a single post is queried. * */ get_header(); ?> <?php get_sidebar('top'); ?> <?php if (have_posts()) { /* Display navigation to next/previous posts when applicable */ if (theme_get_option('theme_top_single_navigation')) { theme_page_navigation( array( 'next_link' => theme_get_previous_post_link('« %link'), 'prev_link' => theme_get_next_post_link('%link »') ) ); } while (have_posts()) { the_post(); get_template_part('content', 'single'); /* Display comments */ if (theme_get_option('theme_allow_comments')) { comments_template(); } } /* Display navigation to next/previous posts when applicable */ if (theme_get_option('theme_bottom_single_navigation')) { theme_page_navigation( array( 'next_link' => theme_get_previous_post_link('« %link'), 'prev_link' => theme_get_next_post_link('%link »') ) ); } } else { theme_404_content(); } ?> <?php widgets_on_template('Nav Links'); ?> <?php get_sidebar('bottom'); ?> <?php get_footer(); ?>
The topic ‘WoP Not Using Template Styling’ is closed to new replies.