• Hello all,

    I am almost finished skinning a blog for my work, and i just realized the posts are showing everything BUT the post content.

    For each post, I can see the title, the post meta, even a section I titled ‘biline’ everything but the actual post content.

    I have swapped out index files, that particular section etc. and it all ends the same, title, post meta, but NO actual post content.

    https://blog.famousfootwear.com/ali/

    Any thoughts?
    Thanks in advance.
    James

Viewing 3 replies - 1 through 3 (of 3 total)
  • Thread Starter bigshift

    (@bigshift)

    update…

    if I enter info in the HTML tab… it shows in the post, but won’t show if i use the visual tab.

    very weird huh?

    any help is still appreciated.

    It seems as if the content isn’t being called. Post your default template so I can check it out.

    Thread Starter bigshift

    (@bigshift)

    Thanks. Here is the single.php code…

    <?php get_header(); ?>
    
    	</div>
    
    		<div id="box">
    		<?php if(have_posts()) : ?><?php while(have_posts()) : the_post(); ?>
    
    				<div class="post">
    
    				<h1><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h1>
    				<div id="biline">Posted by: <?php the_author_link(); ?> | <?php the_time('l, F jS, Y') ?></div>
    
    				<div class="entry">
    
    				<?php the_content(); ?>
    
    				<p class="postmetadata">
    				<?php _e('Filed under:'); ?> <?php the_category(', ') ?> <?php _e('by'); ?> <?php  the_author(); ?><br />
    				<?php comments_popup_link('No Comments »', '1 Comment »', '% Comments »'); ?> <?php edit_post_link('Edit', ' | ', ''); ?>
    								</p>
    
    				</div>
    
    					<div class="comments-template">
    					<?php comments_template(); ?>
    					</div>
    
    				</div>
    
    		<?php endwhile; ?>
    		<div class="navigation">
    		<?php previous_post_link('<< %link') ?> <?php next_post_link(' %link >>') ?>
    
    		</div>
    
    		<?php endif; ?>
    		</div>
    
    <?php get_sidebar(); ?>	
    
    <?php get_footer(); ?>	
    
    </body>
    
    </html>

    It’s virtually the same as index.

    I’ve also tested, it won’t post just anything that I input on the HTML tab, it has to be a good size of markup. A simple div with some greek in it won’t show.

    Thanks

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Post Content not showing’ is closed to new replies.