Wodpress masongy image gallery plugin

Hi,

Masonry.js is a core js script included in WP allready. The only thing left to do is to enqueue it in your theme.

Code:
function enqueue_masonry_script() {
    wp_enqueue_script( 'masonry' );
}
add_action( 'wp_enqueue_scripts', 'enqueue_masonry_script' );
 
Back
Top