Make WordPress Core

Ticket #42942: 42942.2.diff

File 42942.2.diff, 733 bytes (added by lopo, 4 years ago)

Patch refreshed

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

    IDEA additional info:
    Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP
    <+>UTF-8
     
    488488                        }
    489489                }
    490490
    491                 echo $h_time;
     491                /**
     492                 * Filters the published time of the post.
     493                 *
     494                 * @since 5.6
     495                 *
     496                 * @param string  $h_time      The published time.
     497                 * @param WP_Post $post        Post object.
     498                 * @param string  $column_name The column name.
     499                 */
     500                echo apply_filters( 'media_date_column_time', $h_time, $post, 'date' );
    492501        }
    493502
    494503        /**