I have added a custom loop in my Wordpress template. WHich looks something like:
<?php
$args = array('category__not_in' => array($featured_cat->term_id), 'posts_per_page' => 10, 'post__not_in' => array($recent_post) ); query_posts($args); ?>
For pagination to work, i guess i need to pass another arg 'paged'. And the value should be equal to the current page. What is the way to get the current page number in Wordpress?