wordpress - display posts under specific page -
i having many number of pages, display specific posts under 1 specific page. example under news page need display news related posts
how this?
this new query, won't effect main wordpress loop , can used multiple times on page. change parameters category name , number of posts show. use in page template or in page editor php execution enabled.
<?php $my_query = new wp_query('category_name=mycategory&showposts=1'); ?> <?php while ($my_query->have_posts()) : $my_query->the_post(); ?> <a href="<?php the_permalink() ?>" title="<?php the_title(); ?>"> <?php the_title(); ?></a> <?php the_content(); ?> <?php endwhile; ?>
Comments
Post a Comment