Blog not showing full text of posts, only title
-
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.
- The topic ‘Blog not showing full text of posts, only title’ is closed to new replies.