wp_ajax_delete_link() WordPress Function
The wp_ajax_delete_link() function allows you to delete a link via AJAX. This function is triggered when the user clicks on the "Delete" link in the links table.
wp_ajax_delete_link() #
Ajax handler for deleting a link.
Source
File: wp-admin/includes/ajax-actions.php
function wp_ajax_delete_link() { $id = isset( $_POST['id'] ) ? (int) $_POST['id'] : 0; check_ajax_referer( "delete-bookmark_$id" ); if ( ! current_user_can( 'manage_links' ) ) { wp_die( -1 ); } $link = get_bookmark( $id ); if ( ! $link || is_wp_error( $link ) ) { wp_die( 1 ); } if ( wp_delete_link( $id ) ) { wp_die( 1 ); } else { wp_die( 0 ); } }
Expand full source codeCollapse full source codeView on TracView on GitHub
Changelog
Version | Description |
---|---|
3.1.0 | Introduced. |