<h1><?php the_title(); ?></h1> // --- [1]
<?php the_content(); ?>
<?php endwhile; ?>
<?php while (have_posts()) : the_post(); ?>
<?php
// ポスト情報の取得
$ID = $post->ID; // 投稿ID
$title = $post->post_title; // タイトル
$content = $post->post_content; // 投稿内容
$slug = $post->post_name; // スラッグ
$parent = $post->post_parent; // 親投稿の有無
$uri = get_page_uri($ID);
?>
<h1><?php the_title(); ?></h1> // [2]
<?php the_content(); ?> // [3]
<?php
echo("ID : " . $ID . "<br />\n"); // 投稿ID(ページID)
echo("slug : " . $slug . "<br />\n"); // ページスラッグ
echo("url : " . $uri); // URI
?>
<?php endwhile; ?>