Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save kingkool68/9958613 to your computer and use it in GitHub Desktop.
Save kingkool68/9958613 to your computer and use it in GitHub Desktop.
function chris_coyiers_super_awesome_feed_image_magic( $content ) {
$doc = new DOMDocument();
$doc->LoadHTML( $content );
$images = $doc->getElementsByTagName('img');
foreach ($images as $image) {
// Set the new attribute.
$image->setAttribute( 'style', 'max-width:480px;' );
}
return $doc->saveHTML();
}
add_filter( 'the_content_feed', 'chris_coyiers_super_awesome_feed_image_magic' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment