Last active
October 1, 2025 12:20
-
-
Save plugin-republic/dd13cfdf5ab7654c465f3d9ac55a7902 to your computer and use it in GitHub Desktop.
This file contains hidden or 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 | |
| /** | |
| * Hook: woocommerce_single_product_image_thumbnail_html. | |
| */ | |
| function plugin_republic_single_product_image_thumbnail_html( $html, $attachment_id ) { | |
| // Modify $html here | |
| return $html; | |
| } | |
| add_filter( 'woocommerce_single_product_image_thumbnail_html', 'plugin_republic_single_product_image_thumbnail_html', 10, 2 ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment