私は 1 ページのレイアウトを設計しているので、このコードを使用して親ページに子ページを表示させました。
<?php
$mypages = get_pages( array( 'child_of' => $post->ID, 'sort_column' => 'post_date', 'sort_order' => 'desc' ) );
foreach( $mypages as $page ) {
$content = $page->post_content;
if ( ! $content ) // Check for empty page
continue;
$content = apply_filters( 'the_content', $content );
?>
<h2><?php echo $page->post_title; ?></h2>
<div class="entry"><?php echo $content; ?></div>
<?php
}
?>
そして、各子ページにリンクするアイコンを上部に追加したいと思います。しかし、子ページのタイトルを固定する方法がわかりません。できればプラグインなしでやりたいです。
よろしくお願いします。