bbp_is_topic_merge()
Check if current page is a topic merge page
Description Description
Return Return
(bool) True if it's the topic merge page, false if not
Source Source
File: includes/common/template.php
function bbp_is_topic_merge() { // Assume false $retval = false; // Check topic edit and GET params if ( bbp_is_topic_edit() && ! empty( $_GET['action'] ) && ( 'merge' === $_GET['action'] ) ) { return true; } // Filter & return return (bool) apply_filters( 'bbp_is_topic_merge', $retval ); }
Changelog Changelog
Version | Description |
---|---|
2.0.0 | Introduced. |