Make WordPress Core


Ignore:
Timestamp:
03/30/2016 09:54:45 PM (8 years ago)
Author:
westonruter
Message:

Customize: Fix toggle of title attribute field visibility on nav menus admin page.

Improves alignment with nav menus in the Customizer, fixing regression introduced in [36908].

See #35273.
Props sidati, westonruter.
Fixes #36353.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-admin/includes/nav-menu.php

    r36908 r37153  
    942942function wp_nav_menu_manage_columns() {
    943943    return array(
    944         '_title'      => __( 'Show advanced menu properties' ),
    945         'cb'          => '<input type="checkbox" />',
    946         'link-target' => __( 'Link Target' ),
    947         'attr-title' => __( 'Title Attribute' ),
    948         'css-classes' => __( 'CSS Classes' ),
    949         'xfn'         => __( 'Link Relationship (XFN)' ),
    950         'description' => __( 'Description' ),
     944        '_title'          => __( 'Show advanced menu properties' ),
     945        'cb'              => '<input type="checkbox" />',
     946        'link-target'     => __( 'Link Target' ),
     947        'title-attribute' => __( 'Title Attribute' ),
     948        'css-classes'     => __( 'CSS Classes' ),
     949        'xfn'             => __( 'Link Relationship (XFN)' ),
     950        'description'     => __( 'Description' ),
    951951    );
    952952}
Note: See TracChangeset for help on using the changeset viewer.