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 |
---|---|
3659 | if ( !$fields ) { |
3660 | // Allow these to be versioned |
3661 | $fields = array( |
3662 | 'post_title' => __( 'Title' ), |
3663 | 'post_content' => __( 'Content' ), |
3664 | 'post_excerpt' => __( 'Excerpt' ), |
3665 | ); |
3666 |
|
3667 | // Runs only once |
3668 | $fields = apply_filters( '_wp_post_revision_fields', $fields ); |
3669 |
|
3670 | // WP uses these internally either in versioning or elsewhere - they cannot be versioned |
3671 | foreach ( array( 'ID', 'post_name', 'post_parent', 'post_date', 'post_date_gmt', 'post_status', 'post_type', 'comment_count', 'post_author' ) as $protect ) |
3672 | unset( $fields[$protect] ); |
3673 | } |
3674 |
|
3675 | if ( !is_array($post) ) |
3676 | return $fields; |
3677 |
|