acf_save_post_revision()
acf_save_post_revision
This function will copy meta from a post to it's latest revision
Хуков нет.
Возвращает
null
. Ничего.
Использование
acf_save_post_revision( $post_id );
- $post_id **
- -
Список изменений
С версии 5.4.0 | Введена. |
Код acf_save_post_revision() acf save post revision ACF 6.0.4
function acf_save_post_revision( $post_id = 0 ) { // get latest revision $revision = acf_get_post_latest_revision( $post_id ); // save if ( $revision ) { acf_copy_postmeta( $post_id, $revision->ID ); } }