当我的站点试图生成子页面树时,我当前遇到了内存问题。据我所知,查询太大(WP有60000页)
下面是我正在使用的代码
?php global $post;
wp_list_pages( array(
\'child_of\' => $post->ID, // Only pages that are children of the current page
\'depth\' => 1 , // Only show one level of hierarchy
\'sort_order\' => \'asc\',
\'title_li\' =>$post->post_title
));
?>
我是否可以添加其他参数来缩小查询,或者是否有更好的方法来显示子页面列表?
提前谢谢你。