How can I list all page titles and IDs?

To list all page title and id, you can try this code!

  $page_ids= get_all_page_ids();
    echo '<h3>My Page List :</h3>';
       foreach($page_ids as $id)
        {
            echo '<br />'.get_the_title($id).' ' .$id;
        }

click here for more info