我想显示特定Wordpress帖子的修订数量。例如,如果帖子ID“78”被更新了8次,我想在PHP中回显数字“8”。
答案 0 :(得分:0)
你可以试试这个:
$args = array(
'post_parent' => 78, // id
'post_type' => 'revision',
'post_status' => 'inherit'
);
$query = get_children($args);
echo count($query); // i.e. 7