bbp_get_topic_close_link( mixed $args = '' )
Return the close link of the topic
Description
Parameters
- $args
-
(Optional) This function supports these args: - id: Optional. Topic id - link_before: Before the link - link_after: After the link - close_text: Close text - open_text: Open text
Default value: ''
Return
(string) Topic close link
Source
File: bp-forums/topics/template.php
2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 | function bbp_get_topic_close_link( $args = '' ) { // Parse arguments against default values $r = bbp_parse_args( $args , array ( 'id' => 0, 'link_before' => '' , 'link_after' => '' , 'sep' => ' | ' , 'close_text' => __( 'Close' , 'buddyboss' ), 'open_text' => __( 'Open' , 'buddyboss' ) ), 'get_topic_close_link' ); $topic = bbp_get_topic( bbp_get_topic_id( (int) $r [ 'id' ] ) ); if ( empty ( $topic ) || !current_user_can( 'moderate' , $topic ->ID ) ) return ; $display = bbp_is_topic_open( $topic ->ID ) ? $r [ 'close_text' ] : $r [ 'open_text' ]; $uri = add_query_arg( array ( 'action' => 'bbp_toggle_topic_close' , 'topic_id' => $topic ->ID ) ); $uri = wp_nonce_url( $uri , 'close-topic_' . $topic ->ID ); $retval = $r [ 'link_before' ] . '<a href="' . esc_url( $uri ) . '" class="bbp-topic-close-link">' . $display . '</a>' . $r [ 'link_after' ]; return apply_filters( 'bbp_get_topic_close_link' , $retval , $r ); } |
Changelog
Version | Description |
---|---|
bbPress (r2727) | 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.