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 |
---|---|
3113 | // Allow these to be versioned |
3114 | $fields = array( |
3115 | 'post_title' => __( 'Title' ), |
3116 | 'post_author' => __( 'Author' ), |
3117 | 'post_content' => __( 'Content' ), |
3118 | 'post_excerpt' => __( 'Excerpt' ), |
3119 | ); |
3120 |
|
3121 | // Runs only once |
3122 | $fields = apply_filters( '_wp_post_revision_fields', $fields ); |
3123 |
|
3124 | // WP uses these internally either in versioning or elsewhere - they cannot be versioned |
3125 | foreach ( array( 'ID', 'post_name', 'post_parent', 'post_date', 'post_date_gmt', 'post_status', 'post_type', 'comment_count' ) as $protect ) |
3126 | unset( $fields[$protect] ); |
3127 | } |
3128 |
|
3129 | if ( !is_array($post) ) |
3130 | return $fields; |
3131 |
|