这可能对你有帮助。将此脚本添加到函数。php。它将取消oembed预览中的作者设置。记住,Discord可能已经缓存了您的URL。你可能不会马上得到结果。
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;
}
更多解释请从头开始
here