Customize: Show Pages section first and pre-expanded in list of available nav menu items.
Props ryankienstra, westonruter. Fixes #36984. Built from https://develop.svn.wordpress.org/trunk@38767 git-svn-id: http://core.svn.wordpress.org/trunk@38710 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
d6f9cb01d9
commit
2064e34833
|
@ -397,6 +397,8 @@
|
||||||
}
|
}
|
||||||
self.pages[ type + ':' + object ] = -1;
|
self.pages[ type + ':' + object ] = -1;
|
||||||
return;
|
return;
|
||||||
|
} else if ( 'page' === object ) {
|
||||||
|
availableMenuItemContainer.find( '.accordion-section-title > button' ).click();
|
||||||
}
|
}
|
||||||
items = new api.Menus.AvailableItemCollection( items ); // @todo Why is this collection created and then thrown away?
|
items = new api.Menus.AvailableItemCollection( items ); // @todo Why is this collection created and then thrown away?
|
||||||
self.collection.add( items.models );
|
self.collection.add( items.models );
|
||||||
|
|
File diff suppressed because one or more lines are too long
|
@ -895,36 +895,43 @@ final class WP_Customize_Nav_Menus {
|
||||||
<button type="button" class="clear-results"><span class="screen-reader-text"><?php _e( 'Clear Results' ); ?></span></button>
|
<button type="button" class="clear-results"><span class="screen-reader-text"><?php _e( 'Clear Results' ); ?></span></button>
|
||||||
<ul class="accordion-section-content available-menu-items-list" data-type="search"></ul>
|
<ul class="accordion-section-content available-menu-items-list" data-type="search"></ul>
|
||||||
</div>
|
</div>
|
||||||
<div id="new-custom-menu-item" class="accordion-section">
|
|
||||||
<h4 class="accordion-section-title" role="presentation">
|
|
||||||
<?php _e( 'Custom Links' ); ?>
|
|
||||||
<button type="button" class="button-link" aria-expanded="false">
|
|
||||||
<span class="screen-reader-text"><?php _e( 'Toggle section: Custom Links' ); ?></span>
|
|
||||||
<span class="toggle-indicator" aria-hidden="true"></span>
|
|
||||||
</button>
|
|
||||||
</h4>
|
|
||||||
<div class="accordion-section-content customlinkdiv">
|
|
||||||
<input type="hidden" value="custom" id="custom-menu-item-type" name="menu-item[-1][menu-item-type]" />
|
|
||||||
<p id="menu-item-url-wrap" class="wp-clearfix">
|
|
||||||
<label class="howto" for="custom-menu-item-url"><?php _e( 'URL' ); ?></label>
|
|
||||||
<input id="custom-menu-item-url" name="menu-item[-1][menu-item-url]" type="text" class="code menu-item-textbox" value="http://">
|
|
||||||
</p>
|
|
||||||
<p id="menu-item-name-wrap" class="wp-clearfix">
|
|
||||||
<label class="howto" for="custom-menu-item-name"><?php _e( 'Link Text' ); ?></label>
|
|
||||||
<input id="custom-menu-item-name" name="menu-item[-1][menu-item-title]" type="text" class="regular-text menu-item-textbox">
|
|
||||||
</p>
|
|
||||||
<p class="button-controls">
|
|
||||||
<span class="add-to-menu">
|
|
||||||
<input type="submit" class="button submit-add-to-menu right" value="<?php esc_attr_e( 'Add to Menu' ); ?>" name="add-custom-menu-item" id="custom-menu-item-submit">
|
|
||||||
<span class="spinner"></span>
|
|
||||||
</span>
|
|
||||||
</p>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<?php
|
<?php
|
||||||
|
|
||||||
|
// Ensure the page post type comes first in the list.
|
||||||
|
$item_types = $this->available_item_types();
|
||||||
|
$page_item_type = null;
|
||||||
|
foreach ( $item_types as $i => $item_type ) {
|
||||||
|
if ( isset( $item_type['object'] ) && 'page' === $item_type['object'] ) {
|
||||||
|
$page_item_type = $item_type;
|
||||||
|
unset( $item_types[ $i ] );
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if ( $page_item_type ) {
|
||||||
|
$this->print_post_type_container( $page_item_type );
|
||||||
|
}
|
||||||
|
$this->print_custom_links_available_menu_item();
|
||||||
// Containers for per-post-type item browsing; items are added with JS.
|
// Containers for per-post-type item browsing; items are added with JS.
|
||||||
foreach ( $this->available_item_types() as $available_item_type ) {
|
foreach ( $item_types as $item_type ) {
|
||||||
|
$this->print_post_type_container( $item_type );
|
||||||
|
}
|
||||||
|
?>
|
||||||
|
</div><!-- #available-menu-items -->
|
||||||
|
<?php
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Print the markup for new menu items.
|
||||||
|
*
|
||||||
|
* To be used in the template #available-menu-items.
|
||||||
|
*
|
||||||
|
* @since 4.7.0
|
||||||
|
* @access private
|
||||||
|
*
|
||||||
|
* @param array $available_item_type Menu item data to output, including title, type, and label.
|
||||||
|
* @return void
|
||||||
|
*/
|
||||||
|
protected function print_post_type_container( $available_item_type ) {
|
||||||
$id = sprintf( 'available-menu-items-%s-%s', $available_item_type['type'], $available_item_type['object'] );
|
$id = sprintf( 'available-menu-items-%s-%s', $available_item_type['type'], $available_item_type['object'] );
|
||||||
?>
|
?>
|
||||||
<div id="<?php echo esc_attr( $id ); ?>" class="accordion-section">
|
<div id="<?php echo esc_attr( $id ); ?>" class="accordion-section">
|
||||||
|
@ -954,8 +961,43 @@ final class WP_Customize_Nav_Menus {
|
||||||
</div>
|
</div>
|
||||||
<?php
|
<?php
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Print the markup for available menu item custom links.
|
||||||
|
*
|
||||||
|
* @since 4.7.0
|
||||||
|
* @access private
|
||||||
|
*
|
||||||
|
* @return void
|
||||||
|
*/
|
||||||
|
protected function print_custom_links_available_menu_item() {
|
||||||
?>
|
?>
|
||||||
</div><!-- #available-menu-items -->
|
<div id="new-custom-menu-item" class="accordion-section">
|
||||||
|
<h4 class="accordion-section-title" role="presentation">
|
||||||
|
<?php _e( 'Custom Links' ); ?>
|
||||||
|
<button type="button" class="button-link" aria-expanded="false">
|
||||||
|
<span class="screen-reader-text"><?php _e( 'Toggle section: Custom Links' ); ?></span>
|
||||||
|
<span class="toggle-indicator" aria-hidden="true"></span>
|
||||||
|
</button>
|
||||||
|
</h4>
|
||||||
|
<div class="accordion-section-content customlinkdiv">
|
||||||
|
<input type="hidden" value="custom" id="custom-menu-item-type" name="menu-item[-1][menu-item-type]" />
|
||||||
|
<p id="menu-item-url-wrap" class="wp-clearfix">
|
||||||
|
<label class="howto" for="custom-menu-item-url"><?php _e( 'URL' ); ?></label>
|
||||||
|
<input id="custom-menu-item-url" name="menu-item[-1][menu-item-url]" type="text" class="code menu-item-textbox" value="http://">
|
||||||
|
</p>
|
||||||
|
<p id="menu-item-name-wrap" class="wp-clearfix">
|
||||||
|
<label class="howto" for="custom-menu-item-name"><?php _e( 'Link Text' ); ?></label>
|
||||||
|
<input id="custom-menu-item-name" name="menu-item[-1][menu-item-title]" type="text" class="regular-text menu-item-textbox">
|
||||||
|
</p>
|
||||||
|
<p class="button-controls">
|
||||||
|
<span class="add-to-menu">
|
||||||
|
<input type="submit" class="button submit-add-to-menu right" value="<?php esc_attr_e( 'Add to Menu' ); ?>" name="add-custom-menu-item" id="custom-menu-item-submit">
|
||||||
|
<span class="spinner"></span>
|
||||||
|
</span>
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
<?php
|
<?php
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
*
|
*
|
||||||
* @global string $wp_version
|
* @global string $wp_version
|
||||||
*/
|
*/
|
||||||
$wp_version = '4.7-alpha-38766';
|
$wp_version = '4.7-alpha-38767';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||||
|
|
Loading…
Reference in New Issue