WP hooks navigation: Home/browse • Actions index • Filters index
To save our bandwidth, we show only a snippet of code around each occurence of the hook. View complete file in SVN (without highlighting).
The best way to understand what a hook does is to look at where it occurs in the source code.
do_action( "hook_name" )
apply_filters( "hook_name", "what_to_filter" )
.Remember, this hook may occur in more than one file. Moreover, the hook's context may change from version to version.
Line | Code |
---|---|
1124 | * @since 5.5.0 Removed the difference between 'excerpt' and 'list' modes. |
1125 | * The published time and date are both displayed now, |
1126 | * which is equivalent to the previous 'excerpt' mode. |
1127 | * |
1128 | * @param string $t_time The published time. |
1129 | * @param WP_Post $post Post object. |
1130 | * @param string $column_name The column name. |
1131 | * @param string $mode The list display mode ('excerpt' or 'list'). |
1132 | */ |
1133 | echo apply_filters( 'post_date_column_time', $t_time, $post, 'date', $mode ); |
1134 | } |
1135 |
|
1136 | /** |
1137 | * Handles the comments column output. |
1138 | * |
1139 | * @since 4.3.0 |
1140 | * |
1141 | * @param WP_Post $post The current WP_Post object. |
1142 | */ |