WP_Customize_Manager::_save_starter_content_changeset() WordPress Method
The WP_Customize_Manager::_save_starter_content_changeset() method is used to save changes made to starter content in the WordPress Customizer. This method is called when the "Save & Publish" button is clicked in the Customizer.
WP_Customize_Manager::_save_starter_content_changeset() #
Saves starter content changeset.
Source
File: wp-includes/class-wp-customize-manager.php
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();
}
Expand full source codeCollapse full source codeView on TracView on GitHub
Changelog
| Version | Description |
|---|---|
| 4.7.0 | Introduced. |