bbp_is_edit()

Check if current page is an edit page

Description

Return

(bool) True if it's the edit page, false if not

Source

File: bp-forums/common/template.php

function bbp_is_edit() {
	global $wp_query;

	// Assume false
	$retval = false;

	// Check query
	if ( !empty( $wp_query->bbp_is_edit ) && ( $wp_query->bbp_is_edit === true ) )
		$retval = true;

	return (bool) apply_filters( 'bbp_is_edit', $retval );
}

Changelog

Changelog
Version Description
bbPress (r3585) 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.