Skip to content

Instantly share code, notes, and snippets.

@shahadat014
Created January 18, 2015 18:53
Show Gist options
  • Select an option

  • Save shahadat014/c5239a6b9ec3d0c25e6e to your computer and use it in GitHub Desktop.

Select an option

Save shahadat014/c5239a6b9ec3d0c25e6e 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 });
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment