The effects of alcohol on
sustanon 250 leucine for – real weight loss & bodybuilding benefits?
[Solved] Comment attachments data-pin-nopin="nopin"
How-to and Troubleshooting
(@adri)
Trusted Member
Joined: 6 years ago
Is there a way to add data-pin-nopin="nopin" to the images attached with comments? This is so the images are not "pin(able)" to Pinterest and don't show the 'save to Pinterest' button.
If there's a function I can add to my genesis theme or the plugin settings please let me know.
Thank you.
(@asti)
Illustrious Member
Joined: 8 years ago
@adri,
Use this code:
add_filter('wpdiscuz_after_read_more', function ($content) {
return preg_replace('~(<img)([^>]+>)~is', '$1 data-pin-nopin="nopin"$2', $content);
}, 99999999);
Put this code in the WordPress active theme functions.php file (more information on how to add insert custom code).
(@adri)
Trusted Member
Joined: 6 years ago
perfect, thanks so much!!