I’ve been working with custom theme options but now I’m trying custom menu pages.
I managed to create options for basic things like footer content and ad boxes but I can’t figure out how to call a specific category id in a query post.
With standard options I would use
<?php query_posts("cat=<?php echo $theme_category;?>"); ?>
<?php while (have_posts()) : the_post(); ?>
<?php the_post_thumbnail( 'frontpage' ); ?>
<?php endwhile ?>
but when I try that with an option from a custom menu page it doesn’t work.. I’m hoping someone can help me figure this out. I’ll REALLY appreciate it!!

