Forum Replies Created

Viewing 2 replies - 1 through 2 (of 2 total)
  • Thread Starter nickgarren

    (@nickgarren)

    Thanks t-p!

    problem solved!!

    Thread Starter nickgarren

    (@nickgarren)

    Try:
    <?php $recentpost = new WP_Query(“showposts=1&&category__in=xx”);

    where xx = your chosen category id.

    I couldn’t get that piece of code to work, maybe I should have posted the entire snip-it of code I’m using on my page.php file

    here is my entire snip-it:

    <div id="content-inner">
    	          <h1 class="post-title">Featured Mountain Hardware Website</h1>
                       <div> &nbsp;</div>
                        <?php $recentpost = new WP_Query("showposts=1"); while($recentpost->have_posts()) : $recentpost->the_post(); ?>
                          <h1><a href="<?php the_permalink(); ?>" id="post-<?php the_ID(); ?>"><?php the_title(); ?></a></h1>
                           <div> &nbsp;</div>
                            <?php the_content(); ?>
                              <?php endwhile; ?>
                               </div>
Viewing 2 replies - 1 through 2 (of 2 total)