特定のページのコンテンツをエコーするコード スニペットを取得しました。
$id = 123;
$post = get_page($id);
$content = apply_filters('the_content', $post->post_content);
echo $content;
指定したページのh1タイトルタグを挿入するにはどうすればよいですか?
特定のページのコンテンツをエコーするコード スニペットを取得しました。
$id = 123;
$post = get_page($id);
$content = apply_filters('the_content', $post->post_content);
echo $content;
指定したページのh1タイトルタグを挿入するにはどうすればよいですか?
<?php
echo '<pre>';
$page_id = 107;
$page_data = get_page( $page_id );
echo '<h3>'. $page_data->post_title .'</h3>';
echo apply_filters('the_content', $page_data->post_content);
?>
あなたの質問を理解できたかどうかわかりません。h1タグ内に投稿タイトルを表示したい場合は、これを試してください:
<?php
$id=123;
$post = get_page($id);
echo '<h1>' . $post->post_title . '</h1>
?>