beans_remove_output

Remove output.

HTML comments containing the ID are added before and after the output if the development mode is enabled. This makes it very easy to find a content ID when inspecting an element in your web browser.

beans_remove_output( string $id )

Return: (bool) Will always return true.

Parameters

NameTypeRequiredDefaultDescription
$idstringtrue-The output ID.

Source

function beans_remove_output( $id ) {

	return beans_add_filter( $id . '_output', false );

}