Theres a filter you can hook on to.
apply_filters( 'get_delete_post_link', wp_nonce_url( $delete_link, "$action-{$post->post_type}_{$post->ID}" ), $post->ID, $force_delete );
Check the raw function here: http://core.trac.wordpress.org/browser/tags/3.4.1/wp-includes/link-template.php#L954
Can’t advise much else without seeing your code.
Edit:
its nasty buy you can do
add_filter( 'get_delete_post_link', 'some_function', 20 );
function some_function() {
wp_redirect( home_url("https://wordpress.stackexchange.com/") );
exit;
}
Related Posts:
- WP Admin Bar frontend issue with dashicon deregister
- Hooking into the init action will fire it too frequently?
- How to cancel an action hooked to untrash_post? or any hook
- How to know what functions are hooked to an action/filter?
- Is there a hook that runs after a user logs in?
- Why do some hooks not work inside class context?
- Please explain how these hooks work
- Hook after image is uploaded and image sizes generated
- trigger save_post event programmatically
- My add_action (wp_footer, ‘method’) is not calling?
- How to check if which hook triggered the call to a function?
- is it possible to get the hook name in add_action?
- Run javascript code after wp_login hook?
- Redirect logged in users if they are on a specific page
- Check if action hook exists before adding actions to it
- Hooks are not executing
- after login that will redirect user role into a page
- add_action on inherit post status
- Detect type of post status transition
- Create hooks based on an array of hook names?
- Print shortcode in custom action hook not where the shortcode is entered
- action lifecycle
- Is there a recover_post hook to go with trash_post hook?
- Redirect users on specific post category or category page
- Disable email field on WooCommerce customer account details
- How can i trigger an action manually?
- How to get post ID in post_updated action hook?
- Run add_action hook if condition
- Empty Super Cache programmatically (with ACF action) [closed]
- What is the best filter where to use register_block_type?
- How to use do_action_ref_array?
- Admin Hook at the Login Page
- Check if do_action(‘custom_action’) is hooked into?
- How to find hooks as per Just-In-Time approach?
- Prevent attachment from being deleted
- How To Make Sure That My Action Hook Executes Last
- Does update_comment_meta hook exists?
- how to determine how many and what kind of arguments are passed to hooks
- Event-Driven Pattern vs MVC?
- Implement Hooks Using Array
- Save acf field data via acf/save_post before post is saved
- How do I trigger a post update within a get_posts() foreach loop?
- Hook when editing user
- Modify custom field input data before creating a new post
- schedule event in class oriented plugin
- Add action hook into wp_localize_script
- Hooks are not being removed in child theme
- How to replace a function using a child theme?
- Removing parent theme action on pluggable function not working
- Which action hook should I use to intercept a form upon submission?
- How do I prevent term from being created on create_term hook?
- Would there be anything stopping me from removing both wp_head and wp_footer?
- WordPress wp_loaded action hook
- add_action second argument missing
- I would like to send a notification email (Asana) whenever something is published (posts, pages, custom post types) [duplicate]
- admin_notices action doesn’t trigger within save_post action
- Check if `do_action()` in WordPress returns any result
- Plugin Development – Functions or Hooks?
- add_action hook for publish_post not working
- How to run a function after wp() in the wp-blog-header.php file?
- Hook for inserting?
- Notify admin when Custom post meta data gets updated or deletet
- dynamic add_action according to child pages (for homepage control)
- Remove action in a parent theme from the child theme
- Remove action within a class in a parent theme’s includes folder from the child theme
- Action hook with wrapper html
- A good hook to check authorization and redirect?
- What hook to use to redirect based on $post
- Change status of page after an event (Looking for best practice advice)
- Post via wp-admin and via iOS app, same hooks and triggers involved?
- Restrict editing of post type to list stored in user meta
- How to stop execution of a function via add_action hook?
- changing genesis_before_while in new theme framework
- Rewrite the search page to use an appended slug + parameter
- Session management issues with WordPRess 404 Error page
- How can Use custom input field in functions.php page?
- Struggling with plugin dev basics: add_action
- RTrouble passing arguments to action
- How to hook add_action() into after category description with id?
- do_action not working in loop
- add_action doesn’t work for my function
- profile_update hook does not fire from front-end
- Add HTML code before the title of the Tag page
- How can I insert custom html code inside a div dynamically?
- How to trigger click events using hooks
- Check get_post value after wp-admin login
- Hooks with same priority number. Can one stack items returned in divs, position: absolute each with their own z-index?
- Can add_image_size be added earlier
- Why does get_post() not return anything?
- WordPress save_post hook not firing when checking if _GET[‘post’] is set
- Using actions, hooks and filters in a non-WordPress page
- When is get_currentuserinfo() needed?
- How do I remove an action hook by s2member
- Which hook should I use for this scenario regarding the registration process and account/profile update?
- frontend show edit profile with selected custom options
- How wordpress plugin hooks works? [duplicate]
- admin_post hook not working
- add_action failed to display function by a plugin
- How do I set a custom post type Category after import using wp_set_post_terms
- Hooks to trigger a callback when adding, removing, rearranging or updating a widget in the widget area