Skip to content

Instantly share code, notes, and snippets.

@kasparsd
Created January 9, 2015 12:24
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kasparsd/e00c9765d2267d8a672d to your computer and use it in GitHub Desktop.
Save kasparsd/e00c9765d2267d8a672d to your computer and use it in GitHub Desktop.
Remove empty via attribute from Metro Share
<?php
// Remove empty via attribute from Metro Share links
add_filter( 'the_content', 'metroshare_strip_empty_via', 198 );
function metroshare_strip_empty_via( $content ) {
return str_replace( '&via&text', '&text', $content );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment