wp_ajax_delete_meta()

Ajax handler for deleting meta.


Description Description


Source Source

File: wp-admin/includes/ajax-actions.php

function wp_ajax_delete_meta() {
	$id = isset( $_POST['id'] ) ? (int) $_POST['id'] : 0;

	check_ajax_referer( "delete-meta_$id" );
	if ( ! $meta = get_metadata_by_mid( 'post', $id ) ) {
		wp_die( 1 );
	}

	if ( is_protected_meta( $meta->meta_key, 'post' ) || ! current_user_can( 'delete_post_meta', $meta->post_id, $meta->meta_key ) ) {
		wp_die( -1 );
	}
	if ( delete_meta( $meta->meta_id ) ) {
		wp_die( 1 );
	}
	wp_die( 0 );
}

Top ↑

Changelog Changelog

Changelog
Version Description
3.1.0 Introduced.


Top ↑

User Contributed Notes User Contributed Notes

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