You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
github-actions[bot] edited this page Jul 1, 2026
·
3 revisions
Filters the current token scopes.
IndieAuth plugin should hook into this to provide scopes.
Auto-generated Example
/** * Filters the current token scopes. * * IndieAuth plugin should hook into this to provide scopes. * * @param array $scopes * @return array The filtered value. */functionmy_indieauth_scopes_callback( array$scopes ) {
// Your code here.return$scopes;
}
add_filter( 'indieauth_scopes', 'my_indieauth_scopes_callback' );