Hi, I use get_option to get the settings for my querypost :
<?php query_posts('cat=-'.get_option('excludecat')); ?>
But now I also want to insert the showposts with get_option
<?php query_posts('showposts='.get_option('p-post-show')); ?>
And I can't get this into on single code...
Steven