Changeset 53055 for trunk/src/wp-includes/class-wp-customize-nav-menus.php
- Timestamp:
- 04/02/2022 04:24:24 PM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/class-wp-customize-nav-menus.php
r52978 r53055 477 477 478 478 /** 479 * Enqueue scripts and styles for Customizer pane.479 * Enqueues scripts and styles for Customizer pane. 480 480 * 481 481 * @since 4.3.0 … … 599 599 600 600 /** 601 * Allow non-statically created settings to be constructed with custom WP_Customize_Setting subclass.601 * Allows non-statically created settings to be constructed with custom WP_Customize_Setting subclass. 602 602 * 603 603 * @since 4.3.0 … … 620 620 621 621 /** 622 * Add the customizer settings and controls.622 * Adds the customizer settings and controls. 623 623 * 624 624 * @since 4.3.0 … … 864 864 865 865 /** 866 * Get the base10 intval.866 * Gets the base10 intval. 867 867 * 868 868 * This is used as a setting's sanitize_callback; we can't use just plain … … 879 879 880 880 /** 881 * Return an array of all the available item types.881 * Returns an array of all the available item types. 882 882 * 883 883 * @since 4.3.0 … … 930 930 931 931 /** 932 * Add a new `auto-draft` post.932 * Adds a new `auto-draft` post. 933 933 * 934 934 * @since 4.7.0 … … 1057 1057 1058 1058 /** 1059 * Print the JavaScript templates used to render Menu Customizer components.1059 * Prints the JavaScript templates used to render Menu Customizer components. 1060 1060 * 1061 1061 * Templates are imported into the JS use wp.template. … … 1135 1135 1136 1136 /** 1137 * Print the HTML template used to render the add-menu-item frame.1137 * Prints the HTML template used to render the add-menu-item frame. 1138 1138 * 1139 1139 * @since 4.3.0 … … 1193 1193 1194 1194 /** 1195 * Print the markup for new menu items.1195 * Prints the markup for new menu items. 1196 1196 * 1197 1197 * To be used in the template #available-menu-items. … … 1238 1238 1239 1239 /** 1240 * Print the markup for available menu item custom links.1240 * Prints the markup for available menu item custom links. 1241 1241 * 1242 1242 * @since 4.7.0 … … 1318 1318 1319 1319 /** 1320 * Add hooks for the Customizer preview.1320 * Adds hooks for the Customizer preview. 1321 1321 * 1322 1322 * @since 4.3.0 … … 1331 1331 1332 1332 /** 1333 * Make the auto-draft status protected so that it can be queried.1333 * Makes the auto-draft status protected so that it can be queried. 1334 1334 * 1335 1335 * @since 4.7.0 … … 1343 1343 1344 1344 /** 1345 * Sanitize post IDs for posts created for nav menu items to be published.1345 * Sanitizes post IDs for posts created for nav menu items to be published. 1346 1346 * 1347 1347 * @since 4.7.0 … … 1373 1373 1374 1374 /** 1375 * Publish the auto-draft posts that were created for nav menu items.1375 * Publishes the auto-draft posts that were created for nav menu items. 1376 1376 * 1377 1377 * The post IDs will have been sanitized by already by … … 1414 1414 1415 1415 /** 1416 * Keep track of the arguments that are being passed to wp_nav_menu().1416 * Keeps track of the arguments that are being passed to wp_nav_menu(). 1417 1417 * 1418 1418 * @since 4.3.0 … … 1518 1518 1519 1519 /** 1520 * Enqueue scripts for the Customizer preview.1520 * Enqueues scripts for the Customizer preview. 1521 1521 * 1522 1522 * @since 4.3.0 … … 1541 1541 1542 1542 /** 1543 * Export any wp_nav_menu() calls during the rendering of any partials.1543 * Exports any wp_nav_menu() calls during the rendering of any partials. 1544 1544 * 1545 1545 * @since 4.5.0 … … 1554 1554 1555 1555 /** 1556 * Render a specific menu via wp_nav_menu() using the supplied arguments.1556 * Renders a specific menu via wp_nav_menu() using the supplied arguments. 1557 1557 * 1558 1558 * @since 4.3.0
Note: See TracChangeset
for help on using the changeset viewer.