Skip to content

Instantly share code, notes, and snippets.

@kraftbj
Last active September 15, 2015 16:08
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 kraftbj/bdc19f483c03e8815694 to your computer and use it in GitHub Desktop.
Save kraftbj/bdc19f483c03e8815694 to your computer and use it in GitHub Desktop.
Force Jetpack's Content Width (for Tiled Galleries and other purposes when the theme's content width isn't set or being passed)
function bk_set_jetpack_width() {
$content_width = 750;
return $content_width;
}
add_filter('jetpack_content_width', 'bk_set_jetpack_width');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment