bp_get_activity_delete_url()
Return the URL to delete a single activity item.
Description
Return
(string) $link Activity delete link. Contains $redirect_to arg if on single activity page.
Source
File: bp-activity/bp-activity-template.php
function bp_get_activity_delete_url() { global $activities_template; $url = trailingslashit( bp_get_root_domain() . '/' . bp_get_activity_root_slug() . '/delete/' . $activities_template->activity->id ); // Determine if we're on a single activity page, and customize accordingly. if ( bp_is_activity_component() && is_numeric( bp_current_action() ) ) { $url = add_query_arg( array( 'redirect_to' => wp_get_referer() ), $url ); } $url = wp_nonce_url( $url, 'bp_activity_delete_link' ); /** * Filters the activity delete URL. * * @since BuddyPress 2.1.0 * * @param string $url Activity delete URL. */ return apply_filters( 'bp_get_activity_delete_url', $url ); }
Changelog
Version | Description |
---|---|
BuddyPress 2.1.0 | Introduced. |
Questions?
We're always happy to help with code or other questions you might have! Search our developer docs, contact support, or connect with our sales team.