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 |
|---|---|
| 548 | if ( $post_type_object->public ) { |
| 549 | if ( in_array( $post->post_status, array( 'pending', 'draft', 'future' ) ) ) { |
| 550 | if ( $can_edit_post ) |
| 551 | $actions['view'] = '<a href="' . esc_url( add_query_arg( 'preview', 'true', get_permalink( $post->ID ) ) ) . '" title="' . esc_attr( sprintf( __( 'Preview “%s”' ), $title ) ) . '" rel="permalink">' . __( 'Preview' ) . '</a>'; |
| 552 | } elseif ( 'trash' != $post->post_status ) { |
| 553 | $actions['view'] = '<a href="' . get_permalink( $post->ID ) . '" title="' . esc_attr( sprintf( __( 'View “%s”' ), $title ) ) . '" rel="permalink">' . __( 'View' ) . '</a>'; |
| 554 | } |
| 555 | } |
| 556 | |
| 557 | $actions = apply_filters( is_post_type_hierarchical( $post->post_type ) ? 'page_row_actions' : 'post_row_actions', $actions, $post ); |
| 558 | echo $this->row_actions( $actions ); |
| 559 | |
| 560 | get_inline_data( $post ); |
| 561 | echo '</td>'; |
| 562 | break; |
| 563 | |
| 564 | case 'date': |
| 565 | if ( '0000-00-00 00:00:00' == $post->post_date && 'date' == $column_name ) { |
| 566 | $t_time = $h_time = __( 'Unpublished' ); |