Make WordPress Core

Changeset 36645


Ignore:
Timestamp:
02/23/2016 07:17:11 PM (9 years ago)
Author:
westonruter
Message:

Docs: Use markdown instead of HTML for code formatting.

Fixes phpdoc usage in [36622], [36608], [35724], [35307].

See #35898.
See #35869.
See #34738.
See #33552.

Location:
trunk/src/wp-includes
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-includes/class-wp-customize-manager.php

    r36586 r36645  
    247247         * This allows Core components to be excluded from being instantiated by
    248248         * filtering them out of the array. Note that this filter generally runs
    249          * during the <code>plugins_loaded</code> action, so it cannot be added
     249         * during the `plugins_loaded` action, so it cannot be added
    250250         * in a theme.
    251251         *
     
    704704         * Fires when the {@see WP_Customize_Manager::set_post_value()} method is called.
    705705         *
    706          * This is useful for <code>WP_Customize_Setting</code> instances to watch
     706         * This is useful for `WP_Customize_Setting` instances to watch
    707707         * in order to update a cached previewed value.
    708708         *
  • trunk/src/wp-includes/class-wp-customize-setting.php

    r36622 r36645  
    359359     *
    360360     * 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()`
    362362     * is called for this setting.
    363363     *
  • trunk/src/wp-includes/nav-menu.php

    r36622 r36645  
    197197 * Creates a navigation menu.
    198198 *
    199  * Note that <code>$menu_name</code> is expected to be pre-slashed.
     199 * Note that `$menu_name` is expected to be pre-slashed.
    200200 *
    201201 * @since 3.0.0
     
    256256 * Save the properties of a menu or create a new menu with those properties.
    257257 *
    258  * Note that <code>$menu_data</code> is expected to be pre-slashed.
     258 * Note that `$menu_data` is expected to be pre-slashed.
    259259 *
    260260 * @since 3.0.0
     
    352352 *
    353353 * 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()`.
    355355 *
    356356 * @since 3.0.0
Note: See TracChangeset for help on using the changeset viewer.