Error when including posts in page
-
on this page (https://www.checkoutmywatch.com/wordpress/all-mens-watches/) i included the code below to take all the posts from category 23 (mens watches) and put them in the page. however it’s spitting out the error that you see on the page.
please advise how to fix. thanks.
<?php $recent = new WP_Query("cat=23&order=ASC"); while($recent->have_posts()) : $recent->the_post();?> <a href="<?php the_permalink() ?>"> <?php the_title(); ?> </a> <?php the_content(); ?> <?php endwhile; ?> <br />
Viewing 8 replies - 1 through 8 (of 8 total)
Viewing 8 replies - 1 through 8 (of 8 total)
- The topic ‘Error when including posts in page’ is closed to new replies.