Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: post_date_column_time

To save our bandwidth, we show only a snippet of code around each occurence of the hook. View complete file in SVN (without highlighting).

Understanding Source Code

The best way to understand what a hook does is to look at where it occurs in the source code.

Remember, this hook may occur in more than one file. Moreover, the hook's context may change from version to version.

Source View

This hook occurs 2 times in this file.

Line Code
622
623                          if ( $time_diff > 0 && $time_diff < DAY_IN_SECONDS )
624                               $h_time = sprintf( __( '%s ago' ), human_time_diff( $time ) );
625                          else
626                               $h_time = mysql2date( __( 'Y/m/d' ), $m_time );
627                     }
628
629                     echo '<td ' . $attributes . '>';
630                     if ( 'excerpt' == $mode )
631                          echo apply_filters( 'post_date_column_time', $t_time, $post, $column_name, $mode );
632                     else
633                          echo '<abbr title="' . $t_time . '">' . apply_filters( 'post_date_column_time', $h_time, $post, $column_name, $mode ) . '</abbr>';
634                     echo '<br />';
635                     if ( 'publish' == $post->post_status ) {
636                          _e( 'Published' );
637                     } elseif ( 'future' == $post->post_status ) {
638                          if ( $time_diff > 0 )
639                               echo '<strong class="attention">' . __( 'Missed schedule' ) . '</strong>';
640                          else
641                               _e( 'Scheduled' );
642                     } else {