我正在尝试访问子项的页面ID,以便可以递归调用该子项上的get\\u children函数(以获取孙子)。
if ($CurrentPage) {
$args = array(
\'child_of\' => $CurrentPage
);
$children = get_pages( $args );
foreach ($children as $key => $value) {
echo $key.\'=>\'.$value.\'<br />\';
} // End foreach.
} // End IF.
我实际上遇到了一个错误:
Catchable fatal error: Object of class stdClass could not be converted to string