We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Filters the cache duration for Microsub feeds.
/** * Filters the cache duration for Microsub feeds. * * @param int $duration * @param mixed $string * @return int The filtered value. */ function my_microsub_cache_duration_callback( int $duration, string ) { // Your code here. return $duration; } add_filter( 'microsub_cache_duration', 'my_microsub_cache_duration_callback', 10, 2 );
int
$duration
string
$type
\apply_filters( 'microsub_cache_duration', $duration, $type )
← All Hooks