mirror of
https://github.com/gosticks/wordpress-develop.git
synced 2026-07-01 07:40:07 +00:00
Clean cache for orphaned pages. Props hailin. fixes #5457
git-svn-id: https://develop.svn.wordpress.org/trunk@6403 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
@@ -303,8 +303,10 @@ function page_rows( $pages ) {
|
||||
*/
|
||||
if ( count($children_pages) > 0 ) {
|
||||
$empty_array = array();
|
||||
foreach ($children_pages as $orphan_page)
|
||||
display_page_row($orphan_page, $empty_array, 0);
|
||||
foreach ( $children_pages as $orphan_page ) {
|
||||
clean_page_cache( $orphan_page->ID);
|
||||
display_page_row( $orphan_page, $empty_array, 0 );
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user