bbp_get_topic_tag_edit_link( $tag = '' )
Return the link of the current tag
Description
Return
(string) Term Name
Source
File: bp-forums/topics/template.php
function bbp_get_topic_tag_edit_link( $tag = '' ) { global $wp_rewrite; // Get the term if ( ! empty( $tag ) ) { $term = get_term_by( 'slug', $tag, bbp_get_topic_tag_tax_id() ); } else { $tag = get_query_var( 'term' ); $term = get_queried_object(); } // Add before and after if description exists if ( !empty( $term->term_id ) ) { $bbp = bbpress(); // Pretty if ( $wp_rewrite->using_permalinks() ) { $retval = user_trailingslashit( trailingslashit( bbp_get_topic_tag_link() ) . $bbp->edit_id ); // Ugly } else { $retval = add_query_arg( array( $bbp->edit_id => '1' ), bbp_get_topic_tag_link() ); } // No link } else { $retval = ''; } return apply_filters( 'bbp_get_topic_tag_edit_link', $retval, $tag ); }
Changelog
Version | Description |
---|---|
bbPress (r3348) | 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.