Skip to content

Instantly share code, notes, and snippets.

@georgiecel
Created June 24, 2015 13:21
Show Gist options
  • Save georgiecel/fac1411304f144efc3bc to your computer and use it in GitHub Desktop.
Save georgiecel/fac1411304f144efc3bc to your computer and use it in GitHub Desktop.
remove self-closing tags in WordPress (unneeded if coding in HTML5) – insert into functions.php
function remove_self_closing_tags($input) {
return str_replace(' />', '>', $input);
}
add_filter('get_avatar', 'remove_self_closing_tags'); // <img />
add_filter('comment_id_fields', 'remove_self_closing_tags'); // <input />
add_filter('post_thumbnail_html', 'remove_self_closing_tags'); // <img />
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment