YouTube GDPR Notice under Videos
-
Hello,
Until now I have been using WP YouTube Lyte and using code snippets to automatically output a GDPR notice under each video. I used the following code for this.
add_filter(‘lyte_match_postparse_template’,’add_gdpr_note’);
function add_gdpr_note($lyte_template) {
$gdpr_div = ‘<div class=”lyte_gdpr”>The video is embedded by Youtube. The privacy policy of Google applies.<hr /></div>’;
return $lyte_template.$gdpr_div; }Does anyone know how I would need to adjust the code to automatically display the GDPR notice under all Lazy Load videos?
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
- The topic ‘YouTube GDPR Notice under Videos’ is closed to new replies.