Uses
Uses | Description |
---|---|
wp-includes/revision.php: wp_save_post_revision_post_has_changed | Filters whether a post has changed. |
wp-includes/formatting.php: normalize_whitespace() | Normalize EOL characters and strip duplicate whitespace. |
wp-includes/plugin.php: apply_filters() | Calls the callback functions that have been added to a filter hook. |
wp-includes/post.php: post_type_supports() | Check a post type’s support for a given feature. |
wp-includes/post.php: get_post() | Retrieves post data given a post ID or post object. |
wp-includes/revision.php: wp_revisions_enabled() | Determine if revisions are enabled for a given post. |
wp-includes/revision.php: wp_get_post_revisions() | Returns all revisions of specified post. |
wp-includes/revision.php: _wp_put_post_revision() | Inserts post data into the posts table as a post revision. |
wp-includes/revision.php: wp_revisions_to_keep() | Determine how many revisions to retain for a given post. |
wp-includes/revision.php: wp_delete_post_revision() | Deletes a revision. |
wp-includes/revision.php: _wp_post_revision_fields() | Determines which fields of posts are to be saved in revisions. |
wp-includes/revision.php: wp_save_post_revision_check_for_changes | Filters whether the post has changed since the last revision. |