Hello guys
Just a beginner seeking some help. I am writing a if clause to display different categories on different pages.
LOGIC :
If the PAGE with the ID - 128 is displayed, I need to display all the posts under the category -tamtam or else for any other pages, I need to display all the post under the category - main.
This is my code and its not working :(
<?php if ( the_ID('128') ) { ?>
<?php query_posts('category_name=tamtam&posts_per_page=1'); ?>
<?php } else { ?>
<?php query_posts('category_name=main&posts_per_page=4'); ?>
<?php } ?>
It would be really great if anyone can help.
Thankyou