Changeset 36645
- Timestamp:
- 02/23/2016 07:17:11 PM (9 years ago)
- Location:
- trunk/src/wp-includes
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/class-wp-customize-manager.php
r36586 r36645 247 247 * This allows Core components to be excluded from being instantiated by 248 248 * filtering them out of the array. Note that this filter generally runs 249 * during the <code>plugins_loaded</code>action, so it cannot be added249 * during the `plugins_loaded` action, so it cannot be added 250 250 * in a theme. 251 251 * … … 704 704 * Fires when the {@see WP_Customize_Manager::set_post_value()} method is called. 705 705 * 706 * This is useful for <code>WP_Customize_Setting</code>instances to watch706 * This is useful for `WP_Customize_Setting` instances to watch 707 707 * in order to update a cached previewed value. 708 708 * -
trunk/src/wp-includes/class-wp-customize-setting.php
r36622 r36645 359 359 * 360 360 * This ensures that the new value will get sanitized and used the next time 361 * that <code>WP_Customize_Setting::_multidimensional_preview_filter()</code>361 * that `WP_Customize_Setting::_multidimensional_preview_filter()` 362 362 * is called for this setting. 363 363 * -
trunk/src/wp-includes/nav-menu.php
r36622 r36645 197 197 * Creates a navigation menu. 198 198 * 199 * Note that <code>$menu_name</code>is expected to be pre-slashed.199 * Note that `$menu_name` is expected to be pre-slashed. 200 200 * 201 201 * @since 3.0.0 … … 256 256 * Save the properties of a menu or create a new menu with those properties. 257 257 * 258 * Note that <code>$menu_data</code>is expected to be pre-slashed.258 * Note that `$menu_data` is expected to be pre-slashed. 259 259 * 260 260 * @since 3.0.0 … … 352 352 * 353 353 * The menu-item-title, menu-item-description, and menu-item-attr-title are expected 354 * to be pre-slashed since they are passed directly into <code>wp_insert_post()</code>.354 * to be pre-slashed since they are passed directly into `wp_insert_post()`. 355 355 * 356 356 * @since 3.0.0
Note: See TracChangeset
for help on using the changeset viewer.