wp_save_post_revision_on_insert()
Saves revisions for a post after all changes have been made.
Хуков нет.
Возвращает
null
. Ничего (null).
Использование
wp_save_post_revision_on_insert( $post_id, $post, $update );
- $post_id(int) (обязательный)
- The post id that was inserted.
- $post(WP_Post) (обязательный)
- The post object that was inserted.
- $update(true|false) (обязательный)
- Whether this insert is updating an existing post.
Список изменений
С версии 6.4.0 | Введена. |
Код wp_save_post_revision_on_insert() wp save post revision on insert WP 6.6.1
function wp_save_post_revision_on_insert( $post_id, $post, $update ) { if ( ! $update ) { return; } if ( ! has_action( 'post_updated', 'wp_save_post_revision' ) ) { return; } wp_save_post_revision( $post_id ); }