In ur theme file, find this : <?php wp_list_pages('' ); ?> Code (markup): then just exclude the page u wanna remove with its id like this: <?php wp_list_pages('exclude=10' ); ?> Code (markup): u can see the id in manage > pages
Ok and if we want to remove multiple pages from homepage then we need to add like this 'exclude=2','exclude=5' or like this 'exclude=2,5' in code DON.
To exclude multiple pages, use this code <?php wp_list_pages('exclude=10,15,17,30,16' ); ?> Code (markup):