Display menu_order value in quick edit for non-hierarchical post types. Props nikolay.yordanov. Fixes #19911, see #18352.
git-svn-id: http://svn.automattic.com/wordpress/trunk@19929 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
010396ab1a
commit
b7dd19a963
|
@ -257,7 +257,7 @@ function get_inline_data($post) {
|
|||
if ( $post->post_type == 'page' )
|
||||
echo '<div class="page_template">' . esc_html( get_post_meta( $post->ID, '_wp_page_template', true ) ) . '</div>';
|
||||
|
||||
if ( $post_type_object->hierarchical )
|
||||
if ( post_type_supports( $post->post_type, 'page-attributes' ) )
|
||||
echo '<div class="menu_order">' . $post->menu_order . '</div>';
|
||||
|
||||
$taxonomy_names = get_object_taxonomies( $post->post_type );
|
||||
|
|
|
@ -129,9 +129,9 @@ inlineEditPost = {
|
|||
if ( typeof(id) == 'object' )
|
||||
id = t.getId(id);
|
||||
|
||||
fields = ['post_title', 'post_name', 'post_author', '_status', 'jj', 'mm', 'aa', 'hh', 'mn', 'ss', 'post_password', 'post_format'];
|
||||
fields = ['post_title', 'post_name', 'post_author', '_status', 'jj', 'mm', 'aa', 'hh', 'mn', 'ss', 'post_password', 'post_format', 'menu_order'];
|
||||
if ( t.type == 'page' )
|
||||
fields.push('post_parent', 'menu_order', 'page_template');
|
||||
fields.push('post_parent', 'page_template');
|
||||
|
||||
// add the new blank row
|
||||
editRow = $('#inline-edit').clone(true);
|
||||
|
|
Loading…
Reference in New Issue