Created
May 13, 2024 15:40
-
-
Save nextgenthemes/e8db05e6bbe4f0615b956997033bf612 to your computer and use it in GitHub Desktop.
ARVE Rumble fix?
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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