Make WordPress Core


Ignore:
Timestamp:
05/08/2023 10:35:38 PM (21 months ago)
Author:
johnbillion
Message:

Docs: A host of corrections and improvements to inline documentation.

See #57840

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-includes/deprecated.php

    r55653 r55732  
    39363936
    39373937/**
    3938 * Ajax handler for saving a post from Press This.
    3939 *
    3940 * @since 4.2.0
    3941 * @deprecated 4.9.0
    3942 */
     3938 * Ajax handler for saving a post from Press This.
     3939 *
     3940 * @since 4.2.0
     3941 * @deprecated 4.9.0
     3942 */
    39433943function wp_ajax_press_this_save_post() {
    39443944    _deprecated_function( __FUNCTION__, '4.9.0' );
     
    39533953
    39543954/**
    3955 * Ajax handler for creating new category from Press This.
    3956 *
    3957 * @since 4.2.0
    3958 * @deprecated 4.9.0
    3959 */
     3955 * Ajax handler for creating new category from Press This.
     3956 *
     3957 * @since 4.2.0
     3958 * @deprecated 4.9.0
     3959 */
    39603960function wp_ajax_press_this_add_category() {
    39613961    _deprecated_function( __FUNCTION__, '4.9.0' );
     
    44474447
    44484448/**
    4449   * Allows multiple block styles.
    4450   *
    4451   * @since 5.9.0
    4452   * @deprecated 6.1.0
    4453   *
    4454   * @param array $metadata Metadata for registering a block type.
    4455   * @return array Metadata for registering a block type.
    4456   */
    4457   function _wp_multiple_block_styles( $metadata ) {
     4449 * Allows multiple block styles.
     4450 *
     4451 * @since 5.9.0
     4452 * @deprecated 6.1.0
     4453 *
     4454 * @param array $metadata Metadata for registering a block type.
     4455 * @return array Metadata for registering a block type.
     4456 */
     4457function _wp_multiple_block_styles( $metadata ) {
    44584458    _deprecated_function( __FUNCTION__, '6.1.0' );
    44594459    return $metadata;
     
    45994599 * @since 6.0.0
    46004600 * @deprecated 6.2.0 Site Editor's server-side redirect for missing postType and postId
    4601  *                   query args is removed. Thus, this function is no longer used.
     4601 *                   query args is removed. Thus, this function is no longer used.
    46024602 *
    46034603 * @return array|null A template object, or null if none could be found.
Note: See TracChangeset for help on using the changeset viewer.