Blog post Title showing but text or images aren't showing
-
Hello,
I deleted something from plugins. Now my blog post aren’t showing. site link https://seen2help.co.uk/finding-outsourcers-the-essential-questions/
I have pasted full code from single.php. Please can someone have any answer for this?
Regards,
<?php /** * The Template for displaying all single posts. * * @package WordPress * @subpackage Twenty_Eleven * @since Twenty Eleven 1.0 */ get_header(); ?> <div id="primary"> <div id="content" role="main" class="homepage"> <?php while ( have_posts() ) : the_post(); ?> <nav id="nav-single"> <h3 class="assistive-text"><?php _e( 'Post navigation', 'twentyeleven' ); ?></h3> <span class="nav-previous"><?php previous_post_link( '%link', __( '<span class="meta-nav">←</span> Previous', 'twentyeleven' ) ); ?></span> <span class="nav-next"><?php next_post_link( '%link', __( 'Next <span class="meta-nav">→</span>', 'twentyeleven' ) ); ?></span> </nav><!-- #nav-single --> <?php get_template_part( 'content-single', get_post_format() ); ?> <?php comments_template( '', true ); ?> <?php endwhile; // end of the loop. ?> </div><!-- #content --> <div class="home-sidebar"> <?php if ( ! dynamic_sidebar( 'sidebar-1' ) ): ?> <?php endif; ?> </div> <div style="clear:both;" ></div> </div><!-- #primary --> <?php get_footer(); ?>
Viewing 13 replies - 1 through 13 (of 13 total)
Viewing 13 replies - 1 through 13 (of 13 total)
- The topic ‘Blog post Title showing but text or images aren't showing’ is closed to new replies.