_wp_post_revision_field_$field

_wp_post_revision_field_$field

Appears in: , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , ,
Hook Type: filter

See hook in core

Displaying hooks found in version: wordpress-6.7.2

apply_filters('_wp_post_revision_field_$field') is found 2 times:

  • /wp-admin/includes/revision.php line 90
    86
    87
    88
    89
    90
    91
    92
    93
    94
    95
    96
    * @param WP_Post $compare_from   The revision post object to compare to or from.
     * @param string  $context        The context of whether the current revision is the old
     *                                or the new one. Either 'to' or 'from'.
     */
    $content_from = $compare_from ? apply_filters( "_wp_post_revision_field_{$field}", $compare_from->$field, $field, $compare_from, 'from' ) : '';
     
    /** This filter is documented in wp-admin/includes/revision.php */
    $content_to = apply_filters( "_wp_post_revision_field_{$field}", $compare_to->$field, $field, $compare_to, 'to' );
     
    $args = array(
        'show_split_view' => true,
  • /wp-admin/includes/revision.php line 93
    89
    90
    91
    92
    93
    94
    95
    96
    97
    98
    99
    */
    $content_from = $compare_from ? apply_filters( "_wp_post_revision_field_{$field}", $compare_from->$field, $field, $compare_from, 'from' ) : '';
     
    /** This filter is documented in wp-admin/includes/revision.php */
    $content_to = apply_filters( "_wp_post_revision_field_{$field}", $compare_to->$field, $field, $compare_to, 'to' );
     
    $args = array(
        'show_split_view' => true,
        'title_left'      => __( 'Removed' ),
        'title_right'     => __( 'Added' ),
    );