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
582
583                          if ( $time_diff > 0 && $time_diff < DAY_IN_SECONDS )
584                               $h_time = sprintf( __( '%s ago' ), human_time_diff( $time ) );
585                          else
586                               $h_time = mysql2date( __( 'Y/m/d' ), $m_time );
587                     }
588
589                     echo '<td ' . $attributes . '>';
590                     if ( 'excerpt' == $mode )
591                          echo apply_filters( 'post_date_column_time', $t_time, $post, $column_name, $mode );
592                     else
593                          echo '<abbr title="' . $t_time . '">' . apply_filters( 'post_date_column_time', $h_time, $post, $column_name, $mode ) . '</abbr>';
594                     echo '<br />';
595                     if ( 'publish' == $post->post_status ) {
596                          _e( 'Published' );
597                     } elseif ( 'future' == $post->post_status ) {
598                          if ( $time_diff > 0 )
599                               echo '<strong class="attention">' . __( 'Missed schedule' ) . '</strong>';
600                          else
601                               _e( 'Scheduled' );
602                     } else {