Blog Will Only Display Excerpt

Discussion in 'Cloriato WordPress Theme' started by jessicalynn83, Mar 5, 2016.

  1. jessicalynn83

    jessicalynn83 Member

    Joined:
    Oct 18, 2012
    Messages:
    67
    Likes Received:
    1
    Location:
    NE Chicago Suburbs
    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">&nbsp;
                <?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( __( '&larr; Older posts', 'cloriato' ) ); ?>
            </span> <span class="nav-next">
            <?php previous_posts_link( __( 'Newer posts &rarr;', '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(); ?>
     
  2. priya

    priya Guest

    Hello,

    Greetings from InkThemes!

    Please follow the screenshot given below.

    cloriato_blog_full_content.png

    Hope it will resolve your issue

    Do let me know if you need more assistance,

    Thanks & Regards!
    Priyanka
    InkThemes.com
     
  3. jessicalynn83

    jessicalynn83 Member

    Joined:
    Oct 18, 2012
    Messages:
    67
    Likes Received:
    1
    Location:
    NE Chicago Suburbs
    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 :)
     
  4. priya

    priya Guest

    Thanks for your reply Jessie...

    I have just missed out that option...:(

    Thanks & Regards!
    Priyanka
    InkThemes.com
     

Share This Page