Docs: Correct description for `_wp_post_revision_fields()` arguments.
See #13382. git-svn-id: https://develop.svn.wordpress.org/trunk@35352 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
parent
1691563872
commit
54c840dc04
|
@ -18,8 +18,8 @@
|
||||||
*
|
*
|
||||||
* @staticvar array $fields
|
* @staticvar array $fields
|
||||||
*
|
*
|
||||||
* @param array $post Optional. A post array to be processed for insertion as a post revision.
|
* @param array|null $post Optional. A post array to be processed for insertion as a post revision. Default null.
|
||||||
* @param bool $autosave Optional. Is the revision an autosave?
|
* @param bool $autosave Optional. Is the revision an autosave? Default false.
|
||||||
* @return array Post array ready to be inserted as a post revision or array of fields that can be versioned.
|
* @return array Post array ready to be inserted as a post revision or array of fields that can be versioned.
|
||||||
*/
|
*/
|
||||||
function _wp_post_revision_fields( $post = null, $autosave = false ) {
|
function _wp_post_revision_fields( $post = null, $autosave = false ) {
|
||||||
|
|
Loading…
Reference in New Issue