hi all
Is there any way how to make my frontpage wont show posts from some categories?
I have this site http://tsa.mmosite.cz its Wow guild web site, and it contains 3 kinds of posts:
1. usefull guild info
2. interviews
3. medias - youtube videos
and I dont want posts from media category is show on frontpage.. is that possible?
thanks
<?php query_posts('cat=1,2');
while (have_posts()) :
the_post();
the_content();
endwhile;
?>
where 1 and 2 are the category numbers assigned to useful guild info and interviews
Or without working with template files and queries: WordPress › Query Posts « WordPress Plugins
thanks a lot ;-D
btw I look in to source code and I see at footer of every post comments.. info about author.. but template dont show it.. damn.. need to find where is error :-)