Skip to content

Instantly share code, notes, and snippets.

@Tsunamijaan
Created January 5, 2019 09:56
Show Gist options
  • Save Tsunamijaan/bd8c73ff23de85acff1b705b66a0eb1e to your computer and use it in GitHub Desktop.
Save Tsunamijaan/bd8c73ff23de85acff1b705b66a0eb1e to your computer and use it in GitHub Desktop.
Enable masonry in WordPress
add_action( 'wp_enqueue_scripts', 'jk_masonry' );
function jk_masonry() {
wp_enqueue_script( 'jquery-masonry', array( 'jquery' ) );
}
How to use? =======
$('#container').masonry({ singleMode: true });
OR ===========
$('#container').masonry({ columnWidth: 200 });
Get masonry resources form here: http://masonry.desandro.com/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment