_wp_customize_changeset_filter_insert_post_data
Filters changeset post data upon insert to ensure post_name is intact.
Description
This is needed to prevent the post_name from being dropped when the post is transitioned into pending status by a contributor.
Parameters (2)
- 0. $post_data (array)
- An array of slashed post data.
- 1. $supplied_post_data (array)
- An array of sanitized, but otherwise unmodified post data.
Usage
if ( !function_exists( '_wp_customize_changeset_filter_insert_post_data' ) ) { require_once ABSPATH . WPINC . '/theme.php'; } // An array of slashed post data. $post_data = array(); // An array of sanitized, but otherwise unmodified post data. $supplied_post_data = array(); // NOTICE! Understand what this does before running. $result = _wp_customize_changeset_filter_insert_post_data($post_data, $supplied_post_data);
Defined (1)
The function is defined in the following location(s).
- /wp-includes/theme.php
- function _wp_customize_changeset_filter_insert_post_data( $post_data, $supplied_post_data ) {
- if ( isset( $post_data['post_type'] ) && 'customize_changeset' === $post_data['post_type'] ) {
- // Prevent post_name from being dropped, such as when contributor saves a changeset post as pending.
- if ( empty( $post_data['post_name'] ) && ! empty( $supplied_post_data['post_name'] ) ) {
- $post_data['post_name'] = $supplied_post_data['post_name'];
- }
- }
- return $post_data;
- }