<?php get_header(); ?>
<!– Container –>
<div class=”CON”>
<!– Start SC –>
<div class=”SCS”>
<?php if (have_posts()) : ?>
<?php while (have_posts()) : the_post(); ?>
<h1><?php the_title(); ?></h1>
<?php the_content(“<p>__(‘Read the rest of this page »’)</p>”); ?>
<?php edit_post_link(__(‘Edit’), ‘<p>’, ‘</p>’); ?>
<?php endwhile; endif; ?>
</div>
<!– End SC –>
<?php get_sidebar(); ?>
<!– Container –>
</div>
<?php get_footer(); ?>
So I make a chage to the page.php page, (above)…I tried to put the code:
<?php next_page(‘orderby’, ‘link’, ‘before’, ‘after’, ‘title_attr’); ?>
<?php previous_page(‘orderby’, ‘link’, ‘before’, ‘after’, ‘title_attr’); ?>
into the page, but don’t know exactly where to stick it.