wip
This commit is contained in:
@@ -690,18 +690,21 @@ function _wp_ajax_add_hierarchical_term() {
|
||||
);
|
||||
}
|
||||
|
||||
$parent_dropdown_args = array(
|
||||
'taxonomy' => $taxonomy->name,
|
||||
'hide_empty' => 0,
|
||||
'name' => 'new' . $taxonomy->name . '_parent',
|
||||
'orderby' => 'name',
|
||||
'hierarchical' => 1,
|
||||
'show_option_none' => '— ' . $taxonomy->labels->parent_item . ' —',
|
||||
);
|
||||
|
||||
/** This filter is documented in wp-admin/includes/meta-boxes.php */
|
||||
$parent_dropdown_args = apply_filters( 'post_edit_category_parent_dropdown_args', $parent_dropdown_args );
|
||||
|
||||
ob_start();
|
||||
|
||||
wp_dropdown_categories(
|
||||
array(
|
||||
'taxonomy' => $taxonomy->name,
|
||||
'hide_empty' => 0,
|
||||
'name' => 'new' . $taxonomy->name . '_parent',
|
||||
'orderby' => 'name',
|
||||
'hierarchical' => 1,
|
||||
'show_option_none' => '— ' . $taxonomy->labels->parent_item . ' —',
|
||||
)
|
||||
);
|
||||
wp_dropdown_categories( $parent_dropdown_args );
|
||||
|
||||
$sup = ob_get_clean();
|
||||
|
||||
@@ -2114,7 +2117,7 @@ function wp_ajax_inline_save() {
|
||||
if ( isset( $data['keep_private'] ) && 'private' === $data['keep_private'] ) {
|
||||
$data['visibility'] = 'private';
|
||||
$data['post_status'] = 'private';
|
||||
} else {
|
||||
} elseif ( isset( $data['_status'] ) ) {
|
||||
$data['post_status'] = $data['_status'];
|
||||
}
|
||||
|
||||
@@ -5354,7 +5357,7 @@ function wp_ajax_health_check_dotorg_communication() {
|
||||
_doing_it_wrong(
|
||||
'wp_ajax_health_check_dotorg_communication',
|
||||
sprintf(
|
||||
// translators: 1: The Site Health action that is no longer used by core. 2: The new function that replaces it.
|
||||
/* translators: 1: The Site Health action that is no longer used by core. 2: The new function that replaces it. */
|
||||
__( 'The Site Health check for %1$s has been replaced with %2$s.' ),
|
||||
'wp_ajax_health_check_dotorg_communication',
|
||||
'WP_REST_Site_Health_Controller::test_dotorg_communication'
|
||||
@@ -5387,7 +5390,7 @@ function wp_ajax_health_check_background_updates() {
|
||||
_doing_it_wrong(
|
||||
'wp_ajax_health_check_background_updates',
|
||||
sprintf(
|
||||
// translators: 1: The Site Health action that is no longer used by core. 2: The new function that replaces it.
|
||||
/* translators: 1: The Site Health action that is no longer used by core. 2: The new function that replaces it. */
|
||||
__( 'The Site Health check for %1$s has been replaced with %2$s.' ),
|
||||
'wp_ajax_health_check_background_updates',
|
||||
'WP_REST_Site_Health_Controller::test_background_updates'
|
||||
@@ -5420,7 +5423,7 @@ function wp_ajax_health_check_loopback_requests() {
|
||||
_doing_it_wrong(
|
||||
'wp_ajax_health_check_loopback_requests',
|
||||
sprintf(
|
||||
// translators: 1: The Site Health action that is no longer used by core. 2: The new function that replaces it.
|
||||
/* translators: 1: The Site Health action that is no longer used by core. 2: The new function that replaces it. */
|
||||
__( 'The Site Health check for %1$s has been replaced with %2$s.' ),
|
||||
'wp_ajax_health_check_loopback_requests',
|
||||
'WP_REST_Site_Health_Controller::test_loopback_requests'
|
||||
@@ -5470,7 +5473,7 @@ function wp_ajax_health_check_get_sizes() {
|
||||
_doing_it_wrong(
|
||||
'wp_ajax_health_check_get_sizes',
|
||||
sprintf(
|
||||
// translators: 1: The Site Health action that is no longer used by core. 2: The new function that replaces it.
|
||||
/* translators: 1: The Site Health action that is no longer used by core. 2: The new function that replaces it. */
|
||||
__( 'The Site Health check for %1$s has been replaced with %2$s.' ),
|
||||
'wp_ajax_health_check_get_sizes',
|
||||
'WP_REST_Site_Health_Controller::get_directory_sizes'
|
||||
|
||||
Reference in New Issue
Block a user