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