ACF_Form_Post::wp_insert_post_empty_content()publicACF 5.0.1

wp_insert_post_empty_content

Allows WP to insert a new post without title or post_content if ACF data exists.

Метод класса: ACF_Form_Post{}

Хуков нет.

Возвращает

true|false.

Использование

$ACF_Form_Post = new ACF_Form_Post();
$ACF_Form_Post->wp_insert_post_empty_content( $maybe_empty, $postarr );
$maybe_empty(true|false) (обязательный)
Whether the post should be considered "empty".
$postarr(массив) (обязательный)
Array of post data.

Список изменений

С версии 5.0.1 Введена.

Код ACF_Form_Post::wp_insert_post_empty_content() ACF 6.0.4

function wp_insert_post_empty_content( $maybe_empty, $postarr ) {

	// return false and allow insert if '_acf_changed' exists
	if ( $maybe_empty && acf_maybe_get_POST( '_acf_changed' ) ) {
		return false;
	}

	// return
	return $maybe_empty;
}