Tutorials › How to remove author from WordPress oEmbed
How to remove author from WordPress oEmbed
Overview
Steps for removing author name and URL from WordPress oEmbed data.
Steps
- Open
functions.phpin your child theme folder - 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');
- Save the file