Tutorials › How to remove author from WordPress oEmbed

How to remove author from WordPress oEmbed

Updated 4 years ago

Overview

Steps for removing author name and URL from WordPress oEmbed data.

Steps

  1. Open functions.php in your child theme folder
  2. Add the following code
function filter_oembed_response_data($data) {
    if (isset($data['author_name'])) unset($data['author_name']);
    if (isset($data['author_url'])) unset($data['author_url']);

    return $data;
}

add_filter('oembed_response_data', 'filter_oembed_response_data');
  1. Save the file