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