• Resolved violetness6

    (@violetness6)


    Here is my blog https://www.luciditymarketingllc.com

    I am having a problem with the blog not showing the full text of my posts. I have gone into the reading section and selected full text, and its still not working. Here is the code for my index template:

    `<?php get_header(); ?>
    <div id=”wrapper”>
    <?php include (TEMPLATEPATH . “/left-sidebar.php”); ?>
    <div id=”content”>
    <div id=”welcome”>
    Welcome to Lucidity Marketing LLC! Lucidity Marketing is a Wooster Ohio based Internet Marketing Consultation company, here to serve your online marketing needs. Browse our services and products, or simply email us to set up a consultation!
    </div>

    <?php if (have_posts()) : ?>
    <div class=”main_header”>Articles by Lucidity Marketing</div>
    <?php while (have_posts()) : the_post(); ?>

    <div class=”post” id=”post-<?php the_ID(); ?>”>
    <div class=”permalink”>
    ” rel=”bookmark” title=”<?php the_title(); ?>”><?php the_title(); ?>
    </div>

    <div class=”entry”>

    </div>

    </div>

    <?php endwhile; ?>

    <div class=”navigation”>
    <div class=”alignleft”><?php next_posts_link(‘« Previous Entries’) ?></div>
    <div class=”alignright”><?php previous_posts_link(‘Next Entries »’) ?></div>
    </div>

    <?php else : ?>

    <h2 class=”center”>Not Found</h2>
    <p class=”center”>Sorry, but you are looking for something that isn’t here.</p>
    <?php include (TEMPLATEPATH . “/searchform.php”); ?>

    <?php endif; ?>

    </div>

    <?php get_sidebar(); ?>
    </div>
    <?php get_footer(); ?>

    Can anyone help me? If I change the html for the title to content, it highlights all my content as the title link, which I don’t want.

Viewing 7 replies - 1 through 7 (of 7 total)
  • What theme are you using? There is a mistake in the code at the ” rel=”bookmark” title=”<?php the_title(); ?>”><?php the_title(); ?>” section

    Thread Starter violetness6

    (@violetness6)

    HI Mark –

    I am using

    Three Column by blogdesigns

    Three column multi color wordpress theme

    All of this theme’s files are located in /themes/three-column-colorfull.

    replace this

    `<div class=”entry”>

    </div>`

    with

    <div class="entry">
      <?php the_content(__('More...')) ?>
    </div>
    Thread Starter violetness6

    (@violetness6)

    YOU are an absolute GENIUS. THANK YOU SO MUCH!!! Works perfectly!

    you’re welcome:)

    Plz mark this thread as RESOLVED

    I’ve just updated to 3.2 and now my posts only shows part of the text? Any ideas?

    Thread Starter violetness6

    (@violetness6)

    You could try making sure you are not using the EXCERPTS function as well in the post, that does it for me as well.

Viewing 7 replies - 1 through 7 (of 7 total)
  • The topic ‘Blog not showing full text of posts, only title’ is closed to new replies.