Skip to content

Instantly share code, notes, and snippets.

@nextgenthemes
Created May 13, 2024 15:40
Show Gist options
  • Save nextgenthemes/e8db05e6bbe4f0615b956997033bf612 to your computer and use it in GitHub Desktop.
Save nextgenthemes/e8db05e6bbe4f0615b956997033bf612 to your computer and use it in GitHub Desktop.
ARVE Rumble fix?
<?php
add_filter( 'nextgenthemes/arve/iframe_attr', 'arve_emergency_ref_patch' );
function arve_emergency_ref_patch( $attr ) {
$attr['referrerpolicy'] = false;
return $attr;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment