Viewing 8 replies - 1 through 8 (of 8 total)
  • try resetting your permalinks

    Thread Starter dabullz

    (@dabullz)

    Nope, that didn’t do anything.

    whats inside your current theme’s page.php ?

    Thread Starter dabullz

    (@dabullz)

    <?php get_header(); ?>
    
    	<div id="content" class="narrowcolumn">
    
    		<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
    		<div class="post" id="post-<?php the_ID(); ?>">
    		<h2><?php the_title(); ?></h2>
    			<div class="entry">
    				<?php the_content('<p class="serif">Read the rest of this page &raquo;</p>'); ?>
    
    				<?php wp_link_pages(array('before' => '<p><strong>Pages:</strong> ', 'after' => '</p>', 'next_or_number' => 'number')); ?>
    
    			</div>
    		</div>
    		<?php endwhile; endif; ?>
    	<?php edit_post_link('Edit this entry.', '<p>', '</p>'); ?>
    	</div>
    
    <?php get_sidebar(); ?>
    
    <?php get_footer(); ?>

    oh wait, you said this:

    multiple page templates.

    are you using your own made templates? or just page.php?

    Thread Starter dabullz

    (@dabullz)

    Some are the regular page.php and others are customs.

    i see, whats inside the custom template(s) for those 2 pages?

    Thread Starter dabullz

    (@dabullz)

    Here’s the other page template I use.

    <?php
    /*
    Template Name: Great Britain Page
    */
    ?>
    
    <?php include ('header-107.php'); ?>
    
    	<div id="content" class="narrowcolumn">
    
    		<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
    		<div class="post" id="post-<?php the_ID(); ?>">
    		<h2><?php the_title(); ?></h2>
    			<div class="entry">
    				<?php the_content('<p class="serif">Read the rest of this page &raquo;</p>'); ?>
    
    				<?php wp_link_pages(array('before' => '<p><strong>Pages:</strong> ', 'after' => '</p>', 'next_or_number' => 'number')); ?>
    
    			</div>
    		</div>
    		<?php endwhile; endif; ?>
    	<?php edit_post_link('Edit this entry.', '<p>', '</p>'); ?>
    	</div>
    
    <?php get_sidebar(); ?>
    
    <?php get_footer(); ?>
Viewing 8 replies - 1 through 8 (of 8 total)

The topic ‘Text in pages doesn’t appear!’ is closed to new replies.