Call Blog post by topic
-
I am currently using the following code to pull Blog Post to my websites main page.
<?php require('./wordpress/wp-blog-header.php'); ?> <$posts = get_posts('numberposts=3&order=DSC&orderby=post_date');foreach ($posts as $post) : start_wp(); ?> <?php the_date(); echo "<br />"; ?> <?php the_title(); ?> <?php the_excerpt(); ?> <?php endforeach; ?> </div>
I would like to pull post by specific topic to specific pages.
Is this possible? and if so what is the code to do it?
Viewing 3 replies - 1 through 3 (of 3 total)
Viewing 3 replies - 1 through 3 (of 3 total)
- The topic ‘Call Blog post by topic’ is closed to new replies.