Skip to content

Instantly share code, notes, and snippets.

@colettesnow
Created June 29, 2019 08:14
Show Gist options
  • Save colettesnow/a1cb64ca244ebe377667fa70653a8374 to your computer and use it in GitHub Desktop.
Save colettesnow/a1cb64ca244ebe377667fa70653a8374 to your computer and use it in GitHub Desktop.
WordPress snippet: Disable pining to Pinterest of post content images.
<?php
add_filter( 'the_content', function( $content ) {
return str_replace( '<img ', '<img nopin="nopin" ', $content );
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment