get_crp_short_circuit
Allow a short circuit flag to be set to exit at this stage. Set to true to exit.
Type: filter
Since: 2.9.0
Source: includes/frontend/class-display.php line 98
Parameters
| Type | Name | Description |
|---|---|---|
bool | $short_circuit | Short circuit filter. |
\WP_Post | $post | Current Post object. |
array | $args | Arguments array. |
Usage
add_filter( 'get_crp_short_circuit', function($short_circuit, $post, $args) {
// ...
return $short_circuit;
} );