Make WordPress Core

Changeset 45704


Ignore:
Timestamp:
07/31/2019 03:09:55 PM (5 years ago)
Author:
SergeyBiryukov
Message:

Docs: Correct parameter documentation for bulk_edit_custom_box and quick_edit_custom_box actions.

Props abrain.
Fixes #47810.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-admin/includes/class-wp-posts-list-table.php

    r45617 r45704  
    18651865                     * @since 2.7.0
    18661866                     *
    1867                      * @param string  $column_name Name of the column to edit.
    1868                      * @param WP_Post $post_type   The post type slug.
     1867                     * @param string $column_name Name of the column to edit.
     1868                     * @param string $post_type   The post type slug.
    18691869                     */
    18701870                    do_action( 'bulk_edit_custom_box', $column_name, $screen->post_type );
     
    18781878                     * @param string $column_name Name of the column to edit.
    18791879                     * @param string $post_type   The post type slug, or current screen name if this is a taxonomy list table.
    1880                      * @param string taxonomy     The taxonomy name, if any.
     1880                     * @param string $taxonomy    The taxonomy name, if any.
    18811881                     */
    18821882                    do_action( 'quick_edit_custom_box', $column_name, $screen->post_type, '' );
Note: See TracChangeset for help on using the changeset viewer.