PHP 39
WP oembed - Disable author (author_url) of Embed (f.e. Discord) By micha on 9th December 2021 11:06:01 AM
  1. function disable_embeds_filter_oembed_response_data_( $data ) {
  2.     unset($data['author_url']);
  3.     unset($data['author_name']);
  4.     return $data;
  5. }
  6. add_filter( 'oembed_response_data', 'disable_embeds_filter_oembed_response_data_' );

Paste is for source code and general debugging text.

Login or Register to edit, delete and keep track of your pastes and more.

Raw Paste

Login or Register to edit or fork this paste. It's free.