Wordpressのカスタムテーマで2層のナビゲーションを作成しました。それはうまく機能していますが、手動で順序を変更できるかどうか誰かが知っていますか?
これが私のカスタムヘッダーからのコードです:
<div id="secNav">
<?php if($post->post_parent)
$children = wp_list_pages("title_li=&child_of=".$post->post_parent."&echo=0"); else
$children = wp_list_pages("title_li=&child_of=".$post->ID."&echo=0");
if ($children && is_page()) { ?>
<ul id="subnav">
<span class="subDescript"><?php echo $parent_title = get_the_title($post->post_parent); ?> Section:</span>
<?php echo $children; ?>
</ul>
<?php } else { ?>
<?php } ?>
</div>