__return_false
Returns false.
Description
__return_false();
Useful for returning false to filters easily.
Usage
if ( !function_exists( '__return_false' ) ) { require_once ABSPATH . WPINC . '/functions.php'; } // NOTICE! Understand what this does before running. $result = __return_false();
Defined (1)
The function is defined in the following location(s).
- /wp-includes/functions.php
- function __return_false() {
- return false;
- }