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