post_date_column_status

post_date_column_status

Appears in: , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , ,
Hook Type: filter

See hook in core

Displaying hooks found in version: wordpress-6.7.2

apply_filters('post_date_column_status') is found 1 times:

  • /wp-admin/includes/class-wp-posts-list-table.php line 1235
    1231
    1232
    1233
    1234
    1235
    1236
    1237
    1238
    1239
    1240
    1241
    * @param WP_Post $post        Post object.
     * @param string  $column_name The column name.
     * @param string  $mode        The list display mode ('excerpt' or 'list').
     */
    $status = apply_filters( 'post_date_column_status', $status, $post, 'date', $mode );
     
    if ( $status ) {
        echo $status . '<br />';
    }
     
    /**