这是可能的,但并不像更改WP_POST_REVISIONS
中的属性wp-config.php
. 这可以通过在“wp\\U insert\\U post\\U数据”中添加筛选器来实现。
添加筛选器的操作如下:
add_filter(\'wp_insert_post_data\' , \'my_insert_post_data\');
function my_insert_post_data($data , $postarr) {
// Check the revision stuff
return $data;
}