DZone Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world
Get Current Page Id In Wordpress
$this_page_id = get_query_var('page_id')
UPDATE In index.php etc. page is
$post
and page_id is
$post->ID
EXAMPLE USE
$children = wp_list_pages("title_li=&child_of=".$post->ID."&echo=0");





