bbp_get_reply_edit_url( int $reply_id )
Return URL to the reply edit page
Description Description
Parameters Parameters
- $reply_id
-
(Optional) Reply id
Return Return
(string) Reply edit url
Source Source
File: includes/replies/template.php
function bbp_get_reply_edit_url( $reply_id = 0 ) { // Bail if no reply $reply = bbp_get_reply( $reply_id ); if ( empty( $reply ) ) { return; } $reply_link = bbp_remove_view_all( bbp_get_reply_permalink( $reply_id ) ); // Pretty permalinks, previously used `bbp_use_pretty_urls()` // https://bbpress.trac.wordpress.org/ticket/3054 if ( false === strpos( $reply_link, '?' ) ) { $url = trailingslashit( $reply_link ) . bbp_get_edit_slug(); $url = user_trailingslashit( $url ); // Unpretty permalinks } else { $url = add_query_arg( array( bbp_get_reply_post_type() => $reply->post_name, bbp_get_edit_rewrite_id() => '1' ), $reply_link ); } // Maybe add view all $url = bbp_add_view_all( $url ); // Filter & return return apply_filters( 'bbp_get_reply_edit_url', $url, $reply_id ); }
Changelog Changelog
Version | Description |
---|---|
2.0.0 | Introduced. |