Viewing 2 replies - 1 through 2 (of 2 total)
  • Try looking in single.php

    Thread Starter pablo631

    (@pablo631)

    I did and I didn’t see anything. Although you are right, the two pages effected are based on single.php. I’m just using conditional statements to load in different templates.

    Here is my Loop.

    <?php if (have_posts()) : while (have_posts()) : the_post(); ?>
    
    		<div class="post" id="post-<?php the_ID(); ?>">
    								<small><?php the_time('F jS, Y') ?></small> 
    
    			<h1><?php the_title(); ?></h1>
    			<!-- by <?php the_author() ?> -->
    
    			<div class="entry">
    				<?php the_content('<p class="serif">Read the rest of this entry &raquo;</p>'); ?>
    
    				<?php wp_link_pages(array('before' => '<p><strong>Pages:</strong> ', 'after' => '</p>', 'next_or_number' => 'number')); ?>
    <div class="postmetadata"><small><?php the_tags(); ?><?php edit_post_link('Edit', '', ' | '); ?> </small></div>
    
    			</div>
    		</div>
    
    	<?php comments_template(); ?>
    
    	<?php endwhile; else: ?>

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘#### Showing Up in My Posts?’ is closed to new replies.