自更新到3.5以来,我输出子页面列表的代码不再有效。
<?php if( $post->post_parent ) {
$children = wp_list_pages("title_li=&child_of=".$post->post_parent."&echo=0&sort_order=ASC&sort_column=post_date");
} else {
$children = wp_list_pages("title_li=&child_of=".$post->ID."&echo=0&sort_order=ASC&sort_column=post_date");
}
任何人都有任何想法可能会导致这种情况停止在3.5输出?
答案 0 :(得分:0)
wp_list_pages()
。因此,您可能会在其他地方找到行为更改的原因,可能是因为WordPress 3.5的新行为,但在您的代码之前发生了几行。您可以在之前的每个步骤检查执行点是否有断点?或者您可以简单地告诉我们您的代码,包括之前的部分吗? (考虑到问题可能不在你已经隔离的这个小部分)。