-
Notifications
You must be signed in to change notification settings - Fork 4
wpt_default_rate_limit
github-actions[bot] edited this page Jun 14, 2026
·
1 revision
Filter the default rate limit.
add_filter(
'wpt_default_rate_limit',
function(
int $limit,
int|bool $term
) {
// Your code here.
return $limit;
},
10,
2
);-
int$limitInteger number of posts allowed. -
int|bool$termTerm ID or false for default value.
int
apply_filters( 'wpt_default_rate_limit', $limit, $term )