Make WordPress Core

Ticket #30254: 30254.4.patch

File 30254.4.patch, 921 bytes (added by norcross, 10 years ago)

updated docblock formatting per WP standards

  • wp-admin/includes/class-wp-list-table.php

     
    481481         * @access protected
    482482         */
    483483        protected function months_dropdown( $post_type ) {
     484                /**
     485                 * Filter whether to remove the 'Months' drop-down from the post list table.
     486                 *
     487                 * @since
     488        *
     489                 * @param bool   $hide_months_dropdown The default to include the dropdown.
     490                 * @param string $post_type            Optional. The post type to target screen for specific post type.
     491                 * @return bool                        True to hide the dropdown, false to display.
     492                 */
     493                if ( true === apply_filters( 'hide_months_dropdown', false, $post_type ) ) {
     494                        return;
     495                }
     496
    484497                global $wpdb, $wp_locale;
    485498
    486499                $months = $wpdb->get_results( $wpdb->prepare( "