Skip to content

Instantly share code, notes, and snippets.

@phamhung77
Created April 17, 2017 13:38
Show Gist options
  • Select an option

  • Save phamhung77/42b19b3d314e3380e957aa02e39cdc1e to your computer and use it in GitHub Desktop.

Select an option

Save phamhung77/42b19b3d314e3380e957aa02e39cdc1e to your computer and use it in GitHub Desktop.
add_action( 'wp_enqueue_scripts', 'hp_enqueue_scripts_styles' );
function hp_enqueue_scripts_styles() {
/**** Masonry load scripts ****/
if ( is_home() || is_archive() ) {
wp_enqueue_script ( 'jquery-masonry');
wp_enqueue_script ( 'masonry-init' , get_stylesheet_directory_uri() . '/js/masonry-init.js', array('jquery-masonry'), '1', true );
}
/**** Masonry CSS ****/
wp_enqueue_style( 'hp-front-styles', get_stylesheet_directory_uri() . '/masonry.css' );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment