Skip to content

Instantly share code, notes, and snippets.

@cazuki
Created July 17, 2015 12:09
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 cazuki/22cba380dca9853c2824 to your computer and use it in GitHub Desktop.
Save cazuki/22cba380dca9853c2824 to your computer and use it in GitHub Desktop.
WordPressでhentryを削除する記述
function remove_hentry( $classes ) {
$classes = array_diff($classes, array('hentry'));
return $classes;
}
add_filter('post_class', 'remove_hentry');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment