Skip to content

Instantly share code, notes, and snippets.

@miya0001
Created October 16, 2012 05:44
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save miya0001/3897395 to your computer and use it in GitHub Desktop.
Save miya0001/3897395 to your computer and use it in GitHub Desktop.
WordPressのギャラリーのCSSを無効化する。
<?php
add_filter(
"use_default_gallery_style",
"disable_default_gallery_style"
);
function disable_default_gallery_style() {
return false;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment