Query posts using category option
-
I made a theme option to choose from which category to display posts on the homepage. The code is..
<?php query_posts('cat=$theme_category&showposts=$theme_posts_number'); ?> <?php while (have_posts()) : the_post(); ?> <?php the_post_thumbnail( 'frontpage' ); ?> <?php endwhile ?>
I would think that $theme_category will call the number I put in the option but it doesn’t. I’m not sure what I’m doing wrong here..
Viewing 8 replies - 1 through 8 (of 8 total)
Viewing 8 replies - 1 through 8 (of 8 total)
- The topic ‘Query posts using category option’ is closed to new replies.