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_status_by_url' filter. * * @param mixed $ret * @param mixed $get_param * @return mixed The filtered value. */ function my_mastodon_api_status_by_url_callback( $ret, $get_param ) { // Your code here. return $ret; } add_filter( 'mastodon_api_status_by_url', 'my_mastodon_api_status_by_url_callback', 10, 2 );
$ret
$get_param
\apply_filters( 'mastodon_api_status_by_url', null, $request->get_param( 'q' ) )
← All Hooks