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.
/** * Callback function for the 'mastodon_api_account' filter. * * @param array $array * @param int $username_example_org * @return array The filtered value. */ function my_mastodon_api_account_callback( array $array, int $username_example_org ) { // Your code here. return $array; } add_filter( 'mastodon_api_account', 'my_mastodon_api_account_callback', 10, 2 );
array
$array
$account
int
$username_example_org
$int
apply_filters( 'mastodon_api_account', array(), 'username@example.org' )
apply_filters( 'mastodon_api_account', $account, 1 )
← All Hooks