Skip to content

Instantly share code, notes, and snippets.

@ironprogrammer
Last active October 8, 2025 17:03
Show Gist options
  • Select an option

  • Save ironprogrammer/045a27d6f00262c65d50e348d13fd35d to your computer and use it in GitHub Desktop.

Select an option

Save ironprogrammer/045a27d6f00262c65d50e348d13fd35d to your computer and use it in GitHub Desktop.
C2PA metadata testing
<?php
/**
* Prevents stripping of metadata from images.
*
* See: https://developer.wordpress.org/reference/hooks/image_strip_meta/
*/
/*
* This filter only applies when resizing using the Imagick editor since GD always strips profiles by default.
*/
add_filter( 'image_strip_meta', '__return_false' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment