Count Number of Revisions for a Wordpress Post

535 Views Asked by At

I would like to display the number of revisions for a specific Wordpress post. For example, if the post ID "78" was updated 8 times, I would like to echo the number "8" in PHP.

1

There are 1 best solutions below

0
On

You may try this:

$args = array(
    'post_parent' => 78, // id
    'post_type' => 'revision',
    'post_status' => 'inherit'
);
$query = get_children($args);
echo count($query); // i.e. 7