Skip to content

Instantly share code, notes, and snippets.

@kankadev
Created June 29, 2024 18:53
Show Gist options
  • Save kankadev/6c8bb4055eb5853f5a84550e2f66168d to your computer and use it in GitHub Desktop.
Save kankadev/6c8bb4055eb5853f5a84550e2f66168d to your computer and use it in GitHub Desktop.
[remove author] remove author data from embed / sharing in e.g. Discord #embed
add_filter( 'oembed_response_data', 'disable_embeds_filter_oembed_response_data_' );
function disable_embeds_filter_oembed_response_data_( $data ) {
unset($data['author_url']);
unset($data['author_name']);
return $data;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment