__return_true(): true

Returns true.

Description

Useful for returning true to filters easily.

See also

Return

true True.

More Information

Usage:
<?php
// This will add a filter on `example_filter` that returns true
add_filter( 'example_filter', '__return_true' );
?>

Source

function __return_true() { // phpcs:ignore WordPress.NamingConventions.ValidFunctionName.FunctionDoubleUnderscore,PHPCompatibility.FunctionNameRestrictions.ReservedFunctionNames.FunctionDoubleUnderscore
	return true;
}

Changelog

VersionDescription
3.0.0Introduced.

User Contributed Notes

You must log in before being able to contribute a note or feedback.