Skip to content

Instantly share code, notes, and snippets.

@amElnagdy
Last active June 7, 2016 20:33
Show Gist options
  • Save amElnagdy/e0643244d317b9f886c404813b80b60f to your computer and use it in GitHub Desktop.
Save amElnagdy/e0643244d317b9f886c404813b80b60f to your computer and use it in GitHub Desktop.
Remove hentry
// Source: https://wpcolt.com/fix-hentry-errors-wordpress/
add_filter( 'post_class', 'remove_hentry' );
function remove_hentry( $class ) {
$class = array_diff( $class, array( 'hentry' ) );
return $class;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment