Created
April 17, 2017 13:38
-
-
Save phamhung77/42b19b3d314e3380e957aa02e39cdc1e to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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