Book Image

WordPress 2.7 Cookbook

Book Image

WordPress 2.7 Cookbook

Overview of this book

About 120,000 blogs are created every day. Most of them quickly die, but a few stay, grow up, and then become well known and respected places on the Web. If you are seriously interested in being in the top league, you will need to learn all the tricks of the trade. WordPress 2.7 Cookbook focuses on providing solutions to common WordPress problems, to make sure that your blog will be one of the ones that stay. The author's experience with WordPress enables him to share insights on using WordPress effectively, in a clear and friendly way, giving practical hands-on solutions to WordPress problems, questions, and common tasks ñ from themes to widgets and from SEO to security. Are you feeling limited with WordPress, or are you wondering how popular blogs do a certain kind of thing that you can't? With this cookbook, you will learn many WordPress secrets and techniques, with step-by-step, useful recipes dedicated to achieving a particular goal or solve a particular problem. You'll learn the secret of expensive premium themes, how to optimize your blog for SEO and online profits, and how to supercharge WordPress with killer functions used by the most popular blogs over the Internet.
Table of Contents (17 chapters)
WordPress 2.7 Cookbook
Credits
About the Author
About the Reviewers
Preface
2
Finding and Installing Themes
Index

Retrieving posts from a particular category only


Are you using a sideblog, or any kind of special category on your theme? If so, you may want to be able to get posts from this category only. Let's see how to do it.

Getting ready

To complete this recipe, you need a WordPress loop, and the super useful query_posts() function along with the cat parameter.

How to do it...

Paste the following code anywhere in your theme, where you'd like to display posts from a single category only. As I said previously, most of the time you'll use the loop on the index.php file but there are no restrictions—the loop can be used everywhere.


<?php
query_posts("cat=5");
if (have_posts()):
    while (have_posts()) : the_post(); ?>
      <h3><a href="<?php the_permalink() ?>" rel="bookmark" ><?php the_title();?></a></h3>
      the_excerpt();
    endwhile;
endif;
?>

How it works...

The query_posts() function, used with the cat parameter, allows you to specify one or more...