現在の親ページの各子ページのサブタイトルを表示しようとしています。現時点では、子ページのすべてのタイトルが表示されるように機能しています。
基本的には、子ページの各タイトルの下にサブタイトルを表示したいと考えています。
// Get childern
$children = ($post->post_parent) ? wp_list_pages('title_li=&child_of='.$post->post_parent.'&echo=0') : wp_list_pages('title_li=&child_of='.$post->ID.'&echo=0');
// Set subtitle
$subtitle = get_the_title($post->the_subtitle);
echo $children;
echo $subtitle;
どんな助けでも大歓迎です。
乾杯