Prevent child pages from being visually promoted to the top level after Quick Edit. props ssamture. fixes #18615
git-svn-id: http://core.svn.wordpress.org/trunk@21192 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
ab1c5db441
commit
f010e00284
|
@ -1368,7 +1368,18 @@ function wp_ajax_inline_save() {
|
|||
$wp_list_table = _get_list_table('WP_Posts_List_Table');
|
||||
|
||||
$mode = $_POST['post_view'];
|
||||
$wp_list_table->display_rows( array( get_post( $_POST['post_ID'] ) ) );
|
||||
|
||||
$level = 0;
|
||||
$request_post = array( get_post( $_POST['post_ID'] ) );
|
||||
$parent = $request_post[0]->post_parent;
|
||||
|
||||
while ( $parent > 0 ) {
|
||||
$parent_post = get_post( $parent );
|
||||
$parent = $parent_post->post_parent;
|
||||
$level++;
|
||||
}
|
||||
|
||||
$wp_list_table->display_rows( array( get_post( $_POST['post_ID'] ) ), $level );
|
||||
|
||||
wp_die();
|
||||
}
|
||||
|
|
|
@ -300,7 +300,7 @@ class WP_Posts_List_Table extends WP_List_Table {
|
|||
);
|
||||
}
|
||||
|
||||
function display_rows( $posts = array() ) {
|
||||
function display_rows( $posts = array(), $level = 0 ) {
|
||||
global $wp_query, $post_type_object, $per_page;
|
||||
|
||||
if ( empty( $posts ) )
|
||||
|
@ -311,11 +311,11 @@ class WP_Posts_List_Table extends WP_List_Table {
|
|||
if ( $this->hierarchical_display ) {
|
||||
$this->_display_rows_hierarchical( $posts, $this->get_pagenum(), $per_page );
|
||||
} else {
|
||||
$this->_display_rows( $posts );
|
||||
$this->_display_rows( $posts, $level );
|
||||
}
|
||||
}
|
||||
|
||||
function _display_rows( $posts ) {
|
||||
function _display_rows( $posts, $level = 0 ) {
|
||||
global $post, $mode;
|
||||
|
||||
// Create array of post IDs.
|
||||
|
@ -327,7 +327,7 @@ class WP_Posts_List_Table extends WP_List_Table {
|
|||
$this->comment_pending_count = get_pending_comments_num( $post_ids );
|
||||
|
||||
foreach ( $posts as $post )
|
||||
$this->single_row( $post );
|
||||
$this->single_row( $post, $level );
|
||||
}
|
||||
|
||||
function _display_rows_hierarchical( $pages, $pagenum = 1, $per_page = 20 ) {
|
||||
|
@ -524,8 +524,10 @@ class WP_Posts_List_Table extends WP_List_Table {
|
|||
}
|
||||
else {
|
||||
$attributes = 'class="post-title page-title column-title"' . $style;
|
||||
|
||||
$pad = str_repeat( '— ', $level );
|
||||
?>
|
||||
<td <?php echo $attributes ?>><strong><?php if ( $can_edit_post && $post->post_status != 'trash' ) { ?><a class="row-title" href="<?php echo $edit_link; ?>" title="<?php echo esc_attr( sprintf( __( 'Edit “%s”' ), $title ) ); ?>"><?php echo $title ?></a><?php } else { echo $title; }; _post_states( $post ); ?></strong>
|
||||
<td <?php echo $attributes ?>><strong><?php if ( $can_edit_post && $post->post_status != 'trash' ) { ?><a class="row-title" href="<?php echo $edit_link; ?>" title="<?php echo esc_attr( sprintf( __( 'Edit “%s”' ), $title ) ); ?>"><?php echo $pad; echo $title ?></a><?php } else { echo $pad; echo $title; }; _post_states( $post ); ?></strong>
|
||||
<?php
|
||||
if ( 'excerpt' == $mode && current_user_can( 'read_post', $post->ID ) )
|
||||
the_excerpt();
|
||||
|
|
Loading…
Reference in New Issue