Posts not displaying
-
Link – https://merveilleevents.com/journal/
Code for page.php
<?php get_header(); ?> <div id="sidebar"> <?php get_sidebar(); ?> </div> <div id="content"> <?php if (have_posts()) : while (have_posts()) : the_post(); ?> <div class="post" id="post-<?php the_ID(); ?>"> <h2><?php the_title(); ?></h2> <?php the_content('<p class="serif">Read the rest of this page »</p>'); ?> <?php wp_link_pages(array('before' => '<p><strong>Pages:</strong> ', 'after' => '</p>', 'next_or_number' => 'number')); ?> </div> <?php endwhile; endif; ?> <?php edit_post_link('Edit this entry.', '<p>', '</p>'); ?> </div> <?php get_footer(); ?>
Ive used this basic page.php successfully on other sites but for this site the posts are not displaying. Archives and category are displaying correctly however.
Viewing 7 replies - 1 through 7 (of 7 total)
Viewing 7 replies - 1 through 7 (of 7 total)
- The topic ‘Posts not displaying’ is closed to new replies.