WP_Customize_Manager::_save_starter_content_changeset()

In this article

Saves starter content changeset.

Source

public function _save_starter_content_changeset() {

	if ( empty( $this->pending_starter_content_settings_ids ) ) {
		return;
	}

	$this->save_changeset_post(
		array(
			'data'            => array_fill_keys( $this->pending_starter_content_settings_ids, array( 'starter_content' => true ) ),
			'starter_content' => true,
		)
	);
	$this->saved_starter_content_changeset = true;

	$this->pending_starter_content_settings_ids = array();
}

Changelog

VersionDescription
4.7.0Introduced.

User Contributed Notes

You must log in before being able to contribute a note or feedback.