get_children
是获取“附件、修订或子页”最直接的方法。所以
$children = get_children(array(\'post_parent\'=>$post->ID));
if (!empty($children)) {
foreach ($children as $child) {
echo \'<div id="child-\'.$child->ID.\'" >\';
// content formatted however you want
echo \'</div>\';
}
有关可能需要的更多参数,请参阅Codex页面。
我不知道您是如何构建下拉菜单的,但您可以使用其id
属性,以便href
对于链接应为#child-<ID>
, 最好构造为绝对URL。