Skip to content

Instantly share code, notes, and snippets.

@braddalton
Created November 7, 2017 21:14
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save braddalton/c65236e688cb0a867866252b8215fe36 to your computer and use it in GitHub Desktop.
Save braddalton/c65236e688cb0a867866252b8215fe36 to your computer and use it in GitHub Desktop.
add_action( 'wp_enqueue_scripts', 'genesis_masonry_template' );
function genesis_masonry_template() {
wp_enqueue_script( 'masonry-options', get_stylesheet_directory_uri().'/masonry/masonry-options.js' , array('jquery-masonry'), '1.0', true );
wp_enqueue_style( 'masonry-styles', get_stylesheet_directory_uri() . '/masonry/masonry.css', array(), CHILD_THEME_VERSION );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment