Despite checking both the blog.php code and the Reading settings, I can't get my blog page to display the full posts, but only the excerpts. I would greatly appreicate help with this issue. I've included the code of my blog.php in order to help sort out the problem. Sincerely, Jessie www.jessicazimmer.com Code: <?php /* Template Name: Blog Page */ ?> <?php get_header(); ?> <!--Start Content Wrapper--> <div class="grid_24 content_wrapper"> <div class="grid_16 alpha"> <?php $limit = get_option('posts_per_page'); $paged = (get_query_var('paged')) ? get_query_var('paged') : 1; query_posts('showposts=' . $limit . '&paged=' . $paged); $wp_query->is_archive = true; $wp_query->is_home = false; ?> <!--Start Content--> <div class="content"> <?php //if (function_exists('inkthemes_breadcrumbs')) inkthemes_breadcrumbs(); ?> <!-- Start the Loop. --> <?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?> <!--Start Post--> <div id="post-<?php the_ID(); ?>" <?php post_class(); ?>> <h1 class="post_title"><a href="<?php the_permalink(); ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>"> <?php the_title(); ?> </a></h1> <ul class="post_meta"> <li class="posted_by">Posted by <?php the_author_posts_link(); ?> </li> <li class="post_date">on <?php the_time('F jS, Y') ?> </li> <li class="post_category"> <?php the_category(', '); ?></p> </li> <li class="post_comment"> <?php comments_popup_link('0 Comments', '1 Comment', '% Comments'); ?> </li> </ul> <hr/> <div class="post_content"> <?php if ((function_exists('has_post_thumbnail')) && (has_post_thumbnail())) { ?> <?php inkthemes_get_thumbnail(250, 170); ?> <?php } else { ?> <?php inkthemes_get_image(250, 170); ?> <?php } ?> <?php the_content(); ?> <h4>Categories: <?php the_category(', ') ?><br /> <?php the_tags(); ?></h4> <a class="read_more" href="<?php the_permalink(); ?>"></a> </div> </div> <!--End Post--> <?php endwhile; else: ?> <!--End Loop--> <?php endif; ?> <div class="clear"></div> <nav id="nav-single"> <span class="nav-previous"> <?php next_posts_link( __( '← Older posts', 'cloriato' ) ); ?> </span> <span class="nav-next"> <?php previous_posts_link( __( 'Newer posts →', 'cloriato' ) ); ?> </span> </nav> </div> <!--End Content--> </div> <!--Start Sidebar--> <?php get_sidebar(); ?> <!--End Sidebar--> </div> <!--End Content Wrapper--> <div class="clear"></div> </div> <!--End Container--> <?php get_footer(); ?>
Hello, Greetings from InkThemes! Please follow the screenshot given below. Hope it will resolve your issue Do let me know if you need more assistance, Thanks & Regards! Priyanka InkThemes.com
Priyanka, That wasn't the solution - as I'd already had the blog.php setup that way - but I did find a solution and wanted to share with the boards. Check your settings under: Settings > Reading > Posts Page. I had mine set to my blog page which screwed it up and only displays summaries. But if you choose "-- Select --" your page will show the full posts again. I hope this helps others, and thank you for your time! Jessie
Thanks for your reply Jessie... I have just missed out that option... Thanks & Regards! Priyanka InkThemes.com