Skip to:
Content
Pages
Categories
Search
Top
Bottom

Re: Posting Form Disappears


Justin Tadlock
Participant

@greenshady

I’ve narrowed it down the exact problem. Well, I don’t know why, but it seems to be the source. In “header.php” I include with php a file called “menu.php.” Inside of “menu.php” I have my “recent entries” from my wordpress blog. When I delete this particular bit of code everything works fine.

<div class="menu3">

<h3 class="menuHeader">Recent Reviews</h3>

<ul class="list">

<?php $temp_query = $wp_query; ?>

<?php query_posts('cat=3&showposts=10&order=ABC'); ?>

<?php while (have_posts()) : the_post(); ?>

<li>

<a href="<?php the_permalink() ?>" rel="bookmark"><?php the_title(); ?></a>

<br />Review by <?php the_author_posts_link(); ?>

</li>

<?php endwhile; ?>

<?php $wp_query = $temp_query; ?>

</ul>

</div> <!-- menu3 -->

When the post limit exceeds 15, is the only time this seems to be a problem. This runs fine on all the other pages, or when the post limit is 15 or below.

Skip to toolbar